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, ∼2610🔥, 0💬
Popular Posts:
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
How to convert a JSON text string to an XML document with PHP language? Currently, there is no built...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...
Where can I download the EPUB 2.0 sample book "The Problems of Philosophy" by Lewis Theme? You can f...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...