Longer portions of text containing special characters can be escaped with a CDATA section. CDATA sections can only appear in element content.
<?xml version="1.0"?>
<document>
This is a CDATA section : <![CDATA[ plenty of special characters like & < > " ; ]]>
</document>
A CDATA section cannot contain the sequence ]]>
because it ends it.