我无法让这个工作。我已经看到堆栈溢出的所有示例,并了解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
它似乎正在替换空格字符而不是新行字符。
答案 0 :(得分:1)
这是webkit中的一个已知问题,它会影响Safari和Chrome。这是详细信息:
https://bugs.webkit.org/show_bug.cgi?id=53375
我刚才问了一个类似的问题:Is there any way of getting webkit's javascript to handle whitespace properly?