作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望打电话..
<xsl:call-template name="widow-fix">
<with-param name="text" select="text"></with-param>
</xsl:call-template>
然后它会在文本中查找最后一个 空格
并在完成后将其替换为 #160;
。
应该可以支持
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
和
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
请使用不同的字符,如#
来回答/证明,这样我测试时的结果就是
Lorem ipsum dolor sit amet, consectetur adipiscing#elit.
和
<p>Lorem ipsum dolor sit amet, consectetur adipiscing#elit.</p>
最佳答案
您只需替换每个文本节点中的最后一个空格:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="p | text()">
<xsl:apply-templates select="." mode="widow-fix"/>
</xsl:template>
<xsl:template match="* | @*">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="* | @*" mode="widow-fix">
<xsl:copy>
<xsl:apply-templates select="@* | node()" mode="widow-fix"/>
</xsl:copy>
</xsl:template>
<xsl:template match="text()[contains(., ' ')]" mode="widow-fix">
<xsl:call-template name="text">
<xsl:with-param name="text" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template name="text">
<xsl:param name="text"/>
<xsl:variable name="substring-before" select="substring-before($text, ' ')"/>
<xsl:variable name="substring-after" select="substring-after($text, ' ')"/>
<xsl:choose>
<xsl:when test="contains($substring-after, ' ')">
<xsl:value-of select="$substring-before"/>
<xsl:text> </xsl:text>
<xsl:call-template name="text">
<xsl:with-param name="text" select="$substring-after"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$substring-before"/>
<!--<xsl:text> </xsl:text>-->
<xsl:text>#</xsl:text>
<xsl:value-of select="$substring-after"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
mode="widow-fix"可以处理保留封闭标记的文本节点和段落。
我用这样的文档作为测试源
<book>
<p>Highly random content</p>
in this book
</book>
转换为以下内容
<book>
<p>Highly random#content</p>
in this#book
</book>
关于xslt - XSL : Is there an easy way to prevent widows?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19694667/
我是一名优秀的程序员,十分优秀!