posted 15 years ago
Hi All,
How can I write XSLT that outputs CDATA nodes?
For example, how would I modify XSLT code that looks like this:
<xsl:element name="root">
<xsl:element name="node">
<xsl:value-of select="value"/>
</xsl:element>
</xsl:element>
to produce an output like this:
<root>
<node><![CDATA[ This is my value ]]></node>
</root>