XSLT - 将多个模板应用于同一元素

时间:2017-07-03 17:50:01

标签: xslt

现在我正在使用替换模板,该模板会在新行中转换<p></p>个标记:

<xsl:template name="string-replace">
    <xsl:param name="text" />
    <xsl:param name="replace" />
    <xsl:param name="by" />
    <xsl:choose>
        <xsl:when test="$text = '' or $replace = ''or not($replace)" >
            <!-- Prevent this routine from hanging -->
            <xsl:value-of select="$text" />
        </xsl:when>
        <xsl:when test="contains($text, $replace)">
            <xsl:value-of select="substring-before($text,$replace)" />
            <xsl:value-of select="$by" />
            <xsl:call-template name="string-replace">
                <xsl:with-param name="text" select="substring-after($text,$replace)" />
                <xsl:with-param name="replace" select="$replace" />
                <xsl:with-param name="by" select="$by" />
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="$text" />
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

我这样用:

<xsl:variable name="replaceString">
    <xsl:call-template name="string-replace">
        <xsl:with-param name="text" select="$data/description/text" />
        <xsl:with-param name="replace" select="'&lt;p&gt;&lt;/p&gt;'" />
        <xsl:with-param name="by" select="'&#xa;'" />
    </xsl:call-template>
</xsl:variable>

问题是客户端现在要求正确解释其他HTML标记。例如,我希望替换<br>,或者在文本中包含<b>Hello</b>之类的内容时将字体设置为粗体。

对于<br>替换,我写了这个片段:

<xsl:template match="br">
    <fo:block></fo:block>
</xsl:template>

对于<b>替换这个:

<xsl:template match="b">
    <fo:inline font-weight="bold">
        <xsl:apply-templates select="*|text()"/>
    </fo:inline>
</xsl:template>

如何将多个转换应用于同一文本?

文本示例可能如下所示:Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce nisl neque, lobortis ac consequat eu, feugiat a erat. Morbi eget augue dolor. Pellentesque vel laoreet ex. <p></p>Quisque convallis nisl tellus, in rhoncus libero porttitor in. Cras nunc diam, condimentum in ornare ut, mattis in arcu. Nulla ultrices sapien ligula, vel volutpat risus pharetra sed. <br></b>Nunc quis arcu eu ex <b>cursus pellentesque</b> at eget augue.。所以它是带有标记的字符串,而不是带有pb元素的XML。

0 个答案:

没有答案