Help for this page

Select Code to Download


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