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, ∼2655🔥, 0💬
Popular Posts:
Where to get the detailed description of the json_encode() Function in PHP? Here is the detailed des...
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The cu...
How to install "The Windows SDK version 8.1"? I need to build my Visual Studio C++ applications. If ...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...