[Home] [By Thread] [By Date] [Recent Entries]
Ramkumar.V wrote:
Are you limited to XSLT 1.0 or can you use XSLT 2.0? Which XSLT processor do you use?No, I can use xslt 2.0. I am using saxon9 for xml to html tranformation. CDATA contains xml elements, i need to remove only span element. Saxon 9.1 with all versions and 9.2 and 9.3 with the commercial versions supports http://www.saxonica.com/documentation/extensions/functions/parse.xml so you could take that contents of the question element, parse it and run it through templates stripping span elements e.g. <xsl:template match="question"> <p> <xsl:apply-templates select="saxon:parse(.)/node()" mode="strip"/> </p> </xsl:template> <xsl:template match="*" mode="strip">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template> <xsl:template match="span" mode="strip">
<xsl:apply-templates/>
</xsl:template>-- Martin Honnen http://msmvps.com/blogs/martin_honnen/
|

Cart



