|
Setting the output to text is not an option I think, it feels more like a hack.
You should have used something like:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<xsl:value-of select="true_xmlwrapper" disable-output-escaping="yes"/>
</xsl:template>
</xsl:stylesheet>
Cheers
SCRIBle
|