If I do something like this:
<xsl:variable name="something">
<xsl:value-of select="node1" /><br />
<xsl:value-of select="node2" /><br />
<xsl:value-of select="node3" /><br />
<xsl:value-of select="node4" /><br />
</xsl:variable>
<h1><xsl:value-of select="$something" /></h1>
The line breaks are ignored. Is that right?
I'm using xslt 1.0 if that makes any difference.
Thanks in advance.