[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: What data needs to be enclosed in CDATA tags?

Subject: Re: What data needs to be enclosed in CDATA tags?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 28 Sep 2005 21:42:09 +0100
how to use cdata tags
> If I'm storing data that may contain encoded versions of <>&" and ', do 
> I need to store that data in CDATA sections or am I misunderstanding 
> the role of CDATA?

I'm not sure what you mean, but don't (try to) use entities _amd_ CDATA.
that is you can do
<foo> a &lt; b </foo>
or equivalently
<foo><![CDATA[ a < b ]]></foo>

in either of those forms the content of the element is
the 7 characters " a < b " if you do

<foo><![CDATA[ a &lt; b ]]></foo>

The &lt; is not an entity refertence (as & is not a  markup character
in a CDATA section) so it is the 10 characters " a &lt; b "

The answer to the question in the subjext line is "nothing" you _never_
need to use CDATA. The only thing CDATA does is to make < act like &lt;
and & act like &amp; within its scope so if you have a section which
would require a lot of these characters to be escaped it's often more
convenient to use CDATA, but it never _need_ be use, you can always
remove the CDATA section markup and replace & and < by the entities, and
get an equivalent document.

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
________________________________________________________________________

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.