This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: dealing with CDATA (was dealing with CDATA on the client-side)


> > SYNOPSIS:
> > What do I need to do to keep an XSL transform in an MS XMLDOM
environment
> > from converting < and > in a CDATA node to &lt; and &gt;?
> > 
> 
> <xsl:text disable-output-escaping="yes"> This is a 
> <a>link</a> </xsl:text>
> 
Almost but not quite. <xsl:text> can't contain any child elements. The
following would work:

<xsl:text disable-output-escaping="yes"><![CDATA[ This is a <a>link</a>
]]></xsl:text>

Mike Kay


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]