I've been trying to replace all space characters that occur in the schemaLocation attribute with newline characters. I've found many variations on how to do this. The simplest one is something like
<xsl:variable name='nl'><xsl:text>
</xsl:text></xsl:variable>
and then in my replace,
<xsl:value-of select(replace($data,' ',$nl) />
however, every which way i try this, it prints the literal '#x0A;' in the file
I've tried updating XSL:OUTPUT to method="text" however this produces many other strange results
I simply want a newline to appear, not the "#x0A;" string representation of this