This commit is contained in:
parent
8e9ed2de1a
commit
bff0666d85
18
PROMS/fmtxml/removeFmtUseCO.xsl
Normal file
18
PROMS/fmtxml/removeFmtUseCO.xsl
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:output method="xml" encoding="utf-8" omit-xml-declaration="yes" indent="yes" />
|
||||
<xsl:strip-space elements="*" />
|
||||
<xsl:template match="*">
|
||||
<xsl:if test="count(@*) > 0 or count(node()) > 0">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@* | node()" />
|
||||
</xsl:copy>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
<xsl:template match="@UseCheckOffsIn"/> <!--remove UseCheckOffsIn attribute, moved to docstyle -->
|
||||
<xsl:template match="@* | text() | processing-instruction()">
|
||||
<xsl:copy />
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user