For special characters such as: <, >, or ', write them out
to the file as:
&#[decimal ASCII value];
Character Written to Appears in Jenkins
to encode XML file test result viewer
========= ========== ==================
< < <
> >
' ' '
For characters which are listed as RestrictedChar
in http://www.w3.org/TR/xml11/#charsets , these characters
are completely invalid XML, and cannot even be escaped.
Character Written to Appears in Jenkins
to encode XML file test result viewer
========= ========== ==================
0x08 
0x1F 
This will at least generate a valid XML file,
but let us see where these restricted characters would
appear in the output.
For special characters such as: <, >, or ', write them out to the file as: &#[decimal ASCII value];
Character Written to Appears in Jenkins to encode XML file test result viewer ========= ========== ================== < < <
For characters which are listed as RestrictedChar in http://www.w3.org/TR/xml11/#charsets , these characters are completely invalid XML, and cannot even be escaped.
Character Written to Appears in Jenkins to encode XML file test result viewer ========= ========== ================== 0x08  0x1F 
This will at least generate a valid XML file, but let us see where these restricted characters would appear in the output.
Fixes #136