Subject: suprised by <xsl:copy-of select="@*"/>
From: Gerry McDonough <gmcdonough@xxxxxxxx>
Date: Mon, 6 Aug 2001 14:08:59 -0500
|
I was suprised that this template:
<xsl:template match="cell">
<td>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</td>
</xsl:template>
against this XML:
<cell colspan="2" bgcolor="#CC0000">
some other stuff...
</cell>
produced this output:
<td colspan="2" bgcolor="#CC0000">
result of transform on other stuff...
</td>
Why did I get
<td colspan="2" bgcolor="#CC0000">
instead of
<td>colspan="2" bgcolor="#CC0000"
?????
I am using xalan-j_2_0_1
Thanks, Gerry
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|