CDATA Sections
CDATA sections are used to keep the XML processor from interpreting any markup. In a CDATA section, no markup is recognized except "
]]>
".
CDATA sections start with "
<![CDATA[
" and end with "
]]>
".
The following, for example, would be processed as text, not as markup:
<![CDATA[
This is not a <book> start-tag, nor
is this & an entity reference.
]]>
Lab 1F