This commit is contained in:
Kathy Ruffing 2012-04-05 15:38:50 +00:00
parent 8e9ed2de1a
commit bff0666d85

View 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(@*) &gt; 0 or count(node()) &gt; 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>