Help for this page
plugin produces aXML code, parser takes that aXML code and produces HTML code, browser takes that HTML code and produces text.
text_to_aXML: The "escape" function I posted, renamed for clarity. text_to_html: Converts & to &, < to <, etc. ... my $text = ...; return text_to_aXML(text_to_html($text)); }