xsl-list
[Top] [All Lists]

Re: CDATA in CDATA?

2005-12-16 10:31:51
   and i want this output:

  <programlisting><[CDATA[<?xml version="1.0" encoding="UTF-8"?>;
   ]]></programlisting>


so what you want is 

and i want this output:

<programlisting>&lt;?xml version="1.0" encoding="UTF-8"?>;
 </programlisting>

as that is equivalent.

You can getthat by putting either

<programlisting>&lt;?xml version="1.0" encoding="UTF-8"?>;
 </programlisting>

or

<programlisting><CDATA[<?xml version="1.0" encoding="UTF-8"?>;
 ]]></programlisting>


in your stylesheet. If you want the serialiser to use CDATA rather than
&lt; in the result list programlisting in the cdata-section-eleemnts
attribute on xsl:stylesheet. Then the system will use CDATA when
outputting programlisting elements (whether or not a CDATA section is
used for input)

However CDATA is really a convenience for hand authoring it so shouldn't
normally matter whether they are used or not in machine generated files
like the result of an xslt transfromation.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>