[Home] [By Thread] [By Date] [Recent Entries]
IAt 11:26 PM 7/22/02 -0400, you wrote: I tried the solution. It definitely seems like the right direction. It did transformations of all the whitespace elements, as you said it would. thanks. Try
<xsl:template match="node()">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates select="node()"/>
</xsl:copy>
</xsl:template>in stead of
<xsl:template match="node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>Cheers RH XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|

Cart



