[Home] [By Thread] [By Date] [Recent Entries]
pls try the below xsl:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <!-- default identity translation --> <xsl:template match="*|comment()|processing-instruction()|text()"> <xsl:copy> <xsl:apply-templates select="*|comment()|processing-instruction()|text()"/> </xsl:copy> </xsl:template> <xsl:template match="/body/div"> <xsl:apply-templates select="div"/> </xsl:template> <xsl:template match="div"> <xsl:apply-templates/> </xsl:template> <xsl:template match="/body"> <section> <xsl:apply-templates/> </section> </xsl:template> </xsl:stylesheet> Kind regards, Jagdishwar B.
|

Cart



