[Home] [By Thread] [By Date] [Recent Entries]
this helped me quite a bit already. I made this template: Nevermind, I already found what I was doing wrong: <xsl:template match="myhtml">
<xsl:apply-templates select="child::node()"/>
</xsl:template> <xsl:template match="*">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template> <xsl:template match="//mytag">
blabla
</xsl:template>Gives the desired result. Thanks very much. Nico
|

Cart



