用“换行符”替换“cr”
这就是我所说的:
<xsl:variable name="breakText">
<xsl:call-template name="insertBreaks">
<xsl:with-param name="subject" select="PublicProfile/AboutMe"/>
</xsl:call-template>
</xsl:variable>
我正在像文章链接一样在文本上“阅读更多”单击文章短开头的第一个 div(长文章的 550 个字符)显示文本,就像我没有使用“insertBreaks”功能一样
<xsl:copy-of select="substring($breakText,0,550)"/>
但是这行长描述工作正常:
<xsl:copy-of select="$breakText"/>
我哪里错了?