|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Content of Script element getting wrapped by CDATA
It did work. Here is the final working code
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" indent="no"
encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
<xsl:template match="/">
<html xml:lang="en" lang="en">
<!-- Include Header-->
<xsl:apply-templates select="/head" />
<body>
</body>
</html>
</xsl:template>
<xsl:template match="script">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:value-of disable-output-escaping="yes"
select="concat('//<![CDATA[
',text(),'
//]]>')"/>
</xsl:copy>
</xsl:template>
<xsl:template match="style">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:value-of disable-output-escaping="yes"
select="concat('<![CDATA[
',text(),'
]]>')"/>
</xsl:copy>
</xsl:template>
<!--Identity Transform-->
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
<!--xsl:apply-templates select="node()"/-->
</xsl:copy>
</xsl:template>
<xsl:template match="@*|text()|comment()|processing-instruction()">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet>
I wrote a separate template for style, since I don't think the single
line comment (//) is not supported by css.
Thanks a lot for helping me with this.
Joyce
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








