SourceCode/PROMS/fmtxml/removeempty.xsl
2008-08-26 14:21:56 +00:00

18 lines
548 B
XML

<?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="@* | text() | processing-instruction()">
<xsl:copy />
</xsl:template>
</xsl:stylesheet>