Re: remove certain elements but keep children2004-10-04 11:35:22Ben Munat wrote: This is weird. You are copying every child node and then process them again. Use standard identity transformation:
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
--
Oleg Tkachenko
http://blog.tkachenko.com
Multiconn Technologies, Israel
|
|
||||||||||||||||