Module "encode_xml"
===================

A simple XML encoding function
 
builtin encode_xml(text);
-------------------------

This function ecodes a text in XML. I.e. the characters &, <, >, " and '
are translated to &amp;, &lt;, &gt;, &quot;, and &apos;.

This function is designed to be used with the encoding/quoting operator (::).
 
