I have source xml like this (some nodes have text with character code, i.e. TAB):
<Root>
<A>test	</A>
</Root>
and xslt like this:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<Result>
<xsl:value-of select="Root/A/text()" disable-output-escaping = "yes"/>
</Result>
</xsl:template>
</xsl:stylesheet>
When I apply xsl to source xml I got this:
<Result>test </Result> <!-- "test" and tab-symbol -->
Can I change my xslt to get result text exactly same as source?
<Result>test	</Result>