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]
Other format: [Raw text]

Re: CData escaping


   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


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