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, ∼2653🔥, 0💬
Popular Posts:
Where Is the Submitted Form Data Stored in PHP? When a user submit a form on your Web server, user e...
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
How To Get the Minimum or Maximum Value of an Array in PHP? If you want to get the minimum or maximu...
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...
How to run PowerShell Commands in Dockerfile to change Windows Docker images? When building a new Wi...