Don't discard attributes.

This commit is contained in:
Frank Mori Hess 2008-02-06 18:44:13 +00:00
parent f166b87038
commit 38570c04cf

View file

@ -9,7 +9,7 @@
<xsl:output method="html" encoding="UTF-8" version="4.01" />
<!-- alternate background color of table rows -->
<!-- identify even/odd table rows so we can apply alternating color scheme -->
<xsl:template match="table">
<xsl:copy>
<xsl:for-each select="*">
@ -30,6 +30,7 @@
<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>