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> ]]>
Â
⇒Introduction of HTML Element Content Syntax
⇒⇒HTML Tutorials
2017-02-20, 868👍, 0💬
Popular Posts:
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
Where is API Management Service on my Azure Portal? If your IT department has signed up for an Azure...
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...