Outputting an end of line
Hello,
I'm trying to end a line using <xsl:text>. I tried the following code:
<xsl:text>
Hello
World
</xsl:text>
That works fine in Mozilla's XSLT parser but not Internet Explorer (it just returns 'Hello World', without a new line). I've also tried outputting #10; and #13; using <xsl:text>, but neither seem to work.
Is there a standardized way of outputting an end of line?
|