Tools, FAQ, Tutorials:
What Is CDATA in HTML Documents?
What Is CDATA in HTML documents?
✍: FYIcenter.com
CDATA stands for Character DATA, which is used to define a section of data that should not go
through the XHTML entity translation (parsing) process. In other words,
3 special characters: "<", ">", and "&" can be directly used in CDATA.
They will not be "parsed".
CDATA must starts with "<![CDATA[" and ends with "]]>". Here are some good examples:
<![CDATA[Adam & Eve]]> <![CDATA[ Sample XHTML code: <p>1</p> <p>1 1</p> <p>1 2 1</p> <p>1 3 3 1</p> <p>1 4 6 4 1</p> ]]>
⇒ What Is a Sub-element in HTML?
2024-02-28, ∼1988🔥, 0💬
Popular Posts:
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
Where to find EPUB Sample Files? Here is a list of EPUB sample files collected by FYIcenter.com team...
How to create a navigation file like navigation.xhtml for an EPUB 3.0 book? At least one navigation ...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...