Don't discard attributes.
This commit is contained in:
parent
f166b87038
commit
38570c04cf
1 changed files with 2 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue