Can anyone tell me which method or methods that are used that control how HTML entities are parsed for output?
I don't want Sablotron to convert the HTML entities into the actual character they represent. I want the browser to deal with that.
example:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:template match="/">
<HTML>
\
</HTML>
</xsl:template>
</xsl:stylesheet>
when used with an XML document the result I would get is:
<HTML>\</HTML>
I would like the result to be:
<HTML>\</HTML>
Thanks,
- Anthony
