Tagged Questions
The term CDATA is used about text data that should not be parsed by the XML parser.
133
votes
13answers
46k views
When is a CDATA section necessary within a script tag?
Are CDATA tags ever necessary in script tags and if so when?
In other words, when and where is this:
<script type="text/javascript">
//<![CDATA[
...code...
//]]>
</script>
...
22
votes
5answers
10k views
Is there a way to escape a CDATA end token in xml?
I was wondering if there is any way to escape a CDATA end token ( ]]> ) within a CDATA section in an xml document. Or, more generally, if there is some escape sequence for using within a CDATA (but if ...
17
votes
4answers
4k views
what actually is PCDATA and CDATA?
it seems that a loose definition of PCDATA and CDATA is that
1) PCDATA is character data, but is to be parsed.
2) CDATA is character data, and is not to be parsed.
but then someone told me that ...
16
votes
3answers
2k views
Should I use <![CDATA[ in HTML5?
I'm pretty sure the <![CDATA[ tags need to be used in XHTML5, but what about HTML5? Or correct me if I don't need to use them in either?
10
votes
3answers
256 views
Javascript and `<>…</>` tags
So I recently discovered that I could use <>...</> tags in javascript in Firefox, which is handy when defining blocks of HTML or CSS.
GM_addStyle(<><![CDATA[
.page { display: ...
9
votes
5answers
6k views
How to generate CDATA block using JAXB?
I am using JAXB to serialize my data to XML. The class code is simple as given below. I want to produce XML that contains CDATA blocks for the value of some Args. For example, current code produces ...
9
votes
3answers
3k views
Storing base64 data in XML?
How I can store base64 strings in XML?
Do you use CDATA to store base64 strings in XML? Would it help as it allows use of < > within the strings?
Is base64 configurable where you tell it not to ...
8
votes
4answers
2k views
Should I use “]]>” or “//]]>” for closing a CDATA section into xHTML
I want to inline Scripts or CSSs into xHTML without escaping special characters.
I can do that using a CDATA marked section.
According to www.w3.org/TR/xhtml1/#h-4.8 the CDATA section can be defined ...
7
votes
2answers
6k views
Rendering HTML Tags from within CDATA tag in XSL
I have a CDATA tag within my XML code which contains some hyperlinks.
<smartText><![CDATA[
Among individual stocks, the top percentage gainers in the S.&P. 500 are
<a href ...
6
votes
8answers
934 views
What is the reason that CDATA even exists?
I often see people asking XML/XSLT related questions here that root in the inability to grasp how CDATA works (like this one).
I wonder - why does it exist in the first place? It's not that XML could ...
6
votes
2answers
5k views
Using NSXMLParser with CDATA
I'm parsing an RSS feed with NSXMLParser and it's working fine for the title and other strings but one of the elements is an image thats like
<!CDATA <a href="http:image..etc>
How do I ...
6
votes
2answers
2k views
When to CDATA vs. Escape & Vice Versa?
I'm creating XML documents with values fetched from a DB. Occasionally due to a legacy implementation, I'll pullback a value that contains a char that's invalid when not properly escaped (& for ...
6
votes
4answers
767 views
How do i write the literal “]]>” inside a CDATA section with it ending the section
Pretty simple question, I'm writing an XML document and i'm not sure how to write "]]>" without it being seen as the end of the section.
5
votes
5answers
429 views
what is the meaning of CDATA
Gurus,
I am self taught. There's a lot of what you enlightened ones call basic I know nothing about.
Reading this jQuery tutorial ...
5
votes
3answers
338 views
Is CDATA really necessary?
I use inline Javascript quite a bit, usually in WordPress themes that I make. I had not heard of wrapping inline Javascript in //<![CDATA[ ... //]]> up until a few months ago, and I have been ...
5
votes
2answers
132 views
Is starting to use CDATA a breaking change?
For interaction with a customer's application we use XML documents. That is, we send an XML over HTTP and receive a response XML document the same way. The customer specified two XML schemata that ...
5
votes
2answers
533 views
Does Javadoc have an equivalent to <![CDATA[ … ]]>?
Unfortunately, there is no CDATA in HTML.
This is a pity, because it would be perfect for adding javadoc comments that include XML, so you don't have to escape the < and >, for example:
...
5
votes
3answers
413 views
Using CDATA element in XML is vulnerable or not?
Is it a vulnerable using CDATA element in XML documents? If so what happens if we use CDATA element in XML documents?
4
votes
2answers
447 views
PHP XML editing CDATA node
I have an XML file with some CDATA nodes. I want to change the text inside the CDATA node (keeping it as CDATA node). So, I guess I first need to read the CDATA node and then write it back. But, I am ...
4
votes
4answers
3k views
E4X Add CDATA content
Basically I need to define a node name and its CDATA content using variables.
var nodeName:String = "tag";
var nodeValue:String = "<non-escaped-content>";
Naively I thought this would work :
...
4
votes
4answers
8k views
Decode CDATA section in C#
I have a bit of XML as follows:
<section>
<description>
<![CDATA[
This is a "description"
that I have formatted
]]>
</description>
</section>
...
4
votes
4answers
4k views
How to preserve newlines in CDATA when generating XML?
I want to write some text that contains whitespace characters such as newline and tab into an xml file so I use
Element element = xmldoc.createElement("TestElement");
...
4
votes
1answer
6k views
.Net XmlSerializer: deserialize CDATA being inner text
I have a problem with CDATA deserialization using standard .Net XmlSerializer.
Update: I get XML from external system and I can't influence it's format so I can't make CData be enclosed in a separate ...
3
votes
1answer
197 views
Delphi and XML CDATA
How can I extract CData from a XML file with Delphi ?
this is my XML file:
<?xml version="1.0"?>
<root>
<PartoBeetaXMLVersion value="0.1">
<VersionID value="111"/>
...
3
votes
5answers
177 views
innerHTML converts CDATA to comments
I'm trying to insert some HTML into a page using javascript, and the HTML I'm inserting contains CDATA blocks.
I'm finding, in Firefox and Chrome, that the CDATA is getting converted to a comment.
...
3
votes
4answers
530 views
using CDATA in an xml file for to parsing html data
I have a xml file with a malformed HTML in its content ..
Since xml cannot parse html tags like <br> I have used CDATA for saving and parsing .
I have used documentBuilder.setCoalescing(true) ...
3
votes
1answer
205 views
How to create PHP/JSP/ERB tags using XSLT?
I have a bunch of XML files which I use to generate HTML pages. Those pages ultimately get marked up (by hand) with some <%= %> tags and made into Ruby .erb templates.
Is there a way to ...
3
votes
4answers
308 views
What exactly is CDATA and what does it do?
I sometimes notice a CSS or JS code surrounded with <![CDATA[ and ]]> tags. I couldn't find any explanation to this. What does CDATA do? Why is it used by some people and what is it needed for?
3
votes
1answer
1k views
How to parse the html content in android using SAX PARSER
There is description tag in xml. It contains the html tags. I am using SAX parser in android to parse. But when it fetch data from the description tag then it does not fetch the html contents, not any ...
3
votes
1answer
429 views
SQL Server XmlType not preserving the CDATA element
We are using SQL Server 2005 and are trying to store an XML Type in the database. The XML type has an element that needs to contain the content in CDATA, yet once inserted, the field seems to be ...
3
votes
2answers
719 views
how can i grab CData out of BeatuifulSoup
I have a website that I'm scraping that has a similar structure the following. I'd like to be able to grab the info out of the CData block.
I'm using BeautifulSoup to pull other info off the page, ...
3
votes
5answers
801 views
How can I split an <xsl:foreach> into multiple parts?
I have a list of elements that I want to split into individual lists of 3. The end result would be something like this:
<ul>
<li>element</li>
<li>element</li>
...
3
votes
3answers
2k views
XML CDATA Encoding
I am trying to build an XML document in C# with CDATA to hold the text inside an element. For example..
<email>
<![CDATA[test@test.com]]>
</email>
However, when I get the InnerXml ...
3
votes
1answer
2k views
Force use of CDATA in XML-schema
I am creating an xml schema, and I want to make sure that the values in all the elements
are CDATA elements.
Is there a way to force this using XML-schema?
2
votes
2answers
40 views
Detect whether the text content has CDATA
I have two api for getting a description of apps and one common UI. I need to check whether the description come with CDATA tag or not in Java.
For example, one app has the following description :
...
2
votes
1answer
53 views
Need a CDATA event notifying stax parser for java
I have taken over the maintenance of an application that uses a stax parser to break down an XML file of many records into individual records for further processing. Using this type of parser for this ...
2
votes
2answers
57 views
How can i put a string with an ampersand in an xml file with Nokogiri?
I'm trying to include a URL to an image in an XML file, and the ampersands in the URL query string are getting stripped out:
bgdoc.xpath('//Master').each do |elem|
part = ...
2
votes
1answer
97 views
powershell parsing of cdata-section
I'm trying to read an rss feed using powershell and I can't extract a cdata-section within the feed
Here's a snippet of the feed (with a few items cut to save space):
<item ...
2
votes
3answers
149 views
How to remove `//<![CDATA[` and end `//]]>`?
How can I remove the (//<![CDATA[ , //]]>) blocks; tags inside a script element.
<script type="text/javascript">
//<![CDATA[
var l=new Array();
..........................
...
2
votes
2answers
92 views
How include and read HTML for a XML?
<myxml>
<bla>
I want <strong>HTML here</strong>
</bla>
</myxml>
How can I read the HTML from the XML document?
$data = file_get_contents('myxml.xml');
...
2
votes
5answers
200 views
What is CDATA in html?
What is the use of CDATA inside javascript tags?
<script type="text/javascript">
// <![CDATA[
// ]]>
</script>
I can recall seeing it in other areas in HTML.
2
votes
1answer
236 views
Why use CDATA on an HTML 5 website?
I recently went to myspace website to check out how they were doing :) on their HTML code, there's this piece of inline jQuery within their HTML code:
<script type="text/html" ...
2
votes
1answer
419 views
java: remove cdata tag from xml
xpath is nice for parsing xml files, but its not working for data inside the cdata tag:
<![CDATA[ Some Text <p>more text and tags</p>... ]]>
My solution: Get the content of the ...
2
votes
2answers
579 views
Problem with Serialization/Deserialization an XML containing CDATA attribute
I need to deserialize/serialize the xml file below:
<items att1="val">
<item att1="image1.jpg">
<![CDATA[<strong>Image 1</strong>]]>
</item>
<item ...
2
votes
2answers
115 views
What are the supported elements in the RSS 2.0 description tag?
My problem is I have a php script that produces an RSS feed. It loads the description from an SQL database. The SQL database table is also used to show new posts on my websites homepage. When a user ...
2
votes
2answers
622 views
Reading XML CDATA section with ]] in it
I'm coding a RSS reader in Javascript using XMLHttpRequest.
For some RSS Feeds I had no problems but in some cases the xmlDocument.firstChild attribute was always NULL
After trying to see the ...
2
votes
3answers
1k views
HTML inside XML CDATA being converted with < and > brackets
I have some sample XML:
<sample><![CDATA[Line 1<br />Line 2<br />Line 3<br />]]></sample>
I'm using ASP to output this XML using a stylesheet like so:
Set ...
2
votes
2answers
572 views
Extracting data from CDATA using LINQ to XML
I have the following xml file and I am trying to use linq to xml to get the Elements which are residing inside the CDATA section. Any suggestions please.
<?xml version = "1.0" encoding = ...
2
votes
1answer
135 views
php simplexml - extract large number on cdata
I have the following part of my xml:
<book number="AB 123" type="SCI"> <info> <type code="FIC"><![CDATA[Fiction]]></status> ...
2
votes
1answer
753 views
CDATA XML is truncated while parsing
I'm using a SAX parser (on android) to parse an xml file from an WebService. On some elements the CDATA is truncated and not complete, e.g. the XML-file contains data like
...