Re: [xsl] CData escaping

Subject: Re: [xsl] CData escaping
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 6 Feb 2002 18:07:30 GMT
   Very simply, I'm trying to do the following:

  <![CDATA[</i>]]>

  but the < and > are being escaped as &lt; and &gt;

The input <![CDATA[</i>]]> is identical to the input &lt;/i&gt; it is
just two ways of writing the same thing, just as
<x a="b"> is the same as <x      a  = 'b'  >
The XML parser does not report to XSLT which syntax appeared in the
input file.

Similarly the two forms are equivalent in the output.

If you are trying to generate an element node rather than the string
</i> then use the literal result element
<i>
... xsl instructions to generate th econtent of i
</i>


David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread