=head1 NAMEXML::DOM::CDATASection - Escaping XML text blocks in XML::DOM=head1 DESCRIPTIONXML::DOM::CDATASection extends L<XML::DOM::CharacterData> which extendsL<XML::DOM::Node>.CDATA sections are used to escape blocks of text containing charactersthat would otherwise be regarded as markup. The only delimiter that isrecognized in a CDATA section is the "]]>" string that ends the CDATAsection. CDATA sections can not be nested. The primary purpose is forincluding material such as XML fragments, without needing to escape allthe delimiters.The DOMString attribute of the Text node holds the text that iscontained by the CDATA section. Note that this may contain charactersthat need to be escaped outside of CDATA sections and that, dependingon the character encoding ("charset") chosen for serialization, it maybe impossible to write out some characters as part of a CDATA section.The CDATASection interface inherits the CharacterData interface throughthe Text interface. Adjacent CDATASections nodes are not merged by useof the Element.normalize() method.B<NOTE:> XML::DOM::Parser and XML::DOM::ValParser convert all CDATASections to regular text by default.To preserve CDATASections, set the parser option KeepCDATA to 1.