This commit is contained in:
2008-08-26 14:21:56 +00:00
parent 668101bf77
commit 124cf71e16
6 changed files with 334 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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>