[Home] [By Thread] [By Date] [Recent Entries]
On 22 Nov 2006, at 11:42, Florent Georges wrote:
Thanks, this helped me quite a bit already. I made this template: <xsl:template match="myhtml">
<xsl:copy>
<xsl:apply-templates select="child::node()"/>
</xsl:copy>
</xsl:template> <xsl:template match="*">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template> <xsl:template match="//mytag">
blabla
</xsl:template>This does exactly what I want except for one thing: it also copies the myhtml tag. What am I doing wrong? Regards, Nico
|

Cart



