これを動作させることができません。私はスタックオーバーフローのすべての例を見て、xsltコードを理解しました。しかし、何らかの理由で、それは私のスペース文字を置き換えており、改行ではありません。
<t>Line1 Is here
Line2 Is another
Line3 Is some more
</t>
XSLTテンプレートは
<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>
私が得る結果はこれです
Line1
Is
here Line2
Is
another Line3
Is
some
more
ここで私の例を参照してくださいhttp://www.xsltcake.com/slices/VsPbib
改行文字ではなく、スペース文字を置き換えているようです。