I can not get this to work. I have seen all the examples on stack overflow and understand the xslt code. But for some reason it is replaceing my space character and not the new line.
<t>Line1 Is here
Line2 Is another
Line3 Is some more
</t>
The XSLT template is
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="t">
<p>
<xsl:apply-templates/>
</p>
</xsl:template>
<xsl:template match="text()" name="insertBreaks">
<xsl:param name="pText" select="."/>
<xsl:choose>
<xsl:when test="not(contains($pText, '
'))">
<xsl:copy-of select="$pText"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="substring-before($pText, '
')"/>
<br />
<xsl:call-template name="insertBreaks">
<xsl:with-param name="pText" select=
"substring-after($pText, '
')"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
the result I get is this
Line1
Is
here Line2
Is
another Line3
Is
some
more
See my example here http://www.xsltcake.com/slices/VsPbib
It seems to be replacing space characters and not the new line character.