C
cmay
I am having this problem...
Lets say that your source XML is formatted like this:
<somenode>
Here is some text
Here is some more text
</somenode>
When to a <xsl:value-of select="somenode" /> I want the output to be
free of the tabs that are included in the source XML.
These tabs are not really part of the content, but rather just there
for formatting reasons.
I tried doing:
<xsl:value-of select='translate(somenode,"	", "")'/>
But that didn't seem to have an effect.
Any way to do this?
Lets say that your source XML is formatted like this:
<somenode>
Here is some text
Here is some more text
</somenode>
When to a <xsl:value-of select="somenode" /> I want the output to be
free of the tabs that are included in the source XML.
These tabs are not really part of the content, but rather just there
for formatting reasons.
I tried doing:
<xsl:value-of select='translate(somenode,"	", "")'/>
But that didn't seem to have an effect.
Any way to do this?