在XSLT 1.0中保留HTML元素

时间:2014-12-16 15:27:45

标签: xslt xslt-1.0

给出以下XML:

<application>
    <documentation>Before text.
        [This|http://google.com] is a link.
        Click [here|http://google.com] for another link. 
        After text.
    </documentation>
</application>

我想用<br/>标签替换新行并创建链接。结果应该产生以下HTML:

Before text.<br/>
<a href="http://google.com">This</a> is a link.<br/>
Click <a href="http://google.com">here</a> for another link.<br/>
After text.

我在下面的XSLT中使用了相应的模板。我的问题是第一个函数添加的<br/>元素被第二个函数剥离。我尝试过使用身份变换,但我无法绕过它。

任何帮助都将不胜感激。

我目前的XSLT:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html" version="1.0"/>
    <xsl:template match="application">
        <p>
            <xsl:variable name="with_new_lines">
                <xsl:call-template name="replace-newlines">
                    <xsl:with-param name="text" select="documentation"/>
                    <xsl:with-param name="replace" select="'&#xA;'"/>
                    <xsl:with-param name="by" select="'new_line'"/>
                </xsl:call-template>
            </xsl:variable>

            <xsl:variable name="with_links">
                <xsl:call-template name="create-links">
                    <xsl:with-param name="text">
                        <xsl:copy-of select="$with_new_lines"/>
                    </xsl:with-param>
                </xsl:call-template>
            </xsl:variable>
            <xsl:copy-of select="$with_links"/>
        </p>
    </xsl:template>
    <xsl:template name="replace-newlines">
        <xsl:param name="text"/>
        <xsl:choose>
            <xsl:when test="contains($text, '&#xA;')">
                <xsl:copy-of select="substring-before($text,'&#xA;')"/>
                <br/>
                <xsl:call-template name="replace-newlines">
                    <xsl:with-param name="text" select="substring-after($text,'&#xA;')"/>
                </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
                <xsl:copy-of select="$text"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
    <!-- Changing [here|http://a.com] to <a href="http://a.com">here</a>and
        [http://a.com] to <a href="http://a.com">http://a.com</a>-->
    <xsl:template match="*" name="create-links">
        <xsl:param name="text" select="."/>
        <xsl:choose>
            <xsl:when test="contains($text, 'http')">
                <xsl:copy-of select="substring-before($text,'[')"/>
                <xsl:variable name="the_link_and_after">
                    <xsl:copy-of select="substring-after($text,'[')"/>
                </xsl:variable>
                <xsl:variable name="the_link">
                    <xsl:copy-of select="substring-before($the_link_and_after,']')"/>
                </xsl:variable>
                <xsl:choose>
                    <xsl:when test="contains($the_link,'|')">
                        <xsl:variable name="the_url">
                            <xsl:copy-of select="substring-after($the_link,'|')"/>
                        </xsl:variable>
                        <a href="{$the_url}">
                            <xsl:copy-of select="substring-before($the_link,'|')"/>
                        </a>
                    </xsl:when>
                    <xsl:otherwise>
                        <a href="{$the_link}">
                            <xsl:copy-of select="$the_link"/>
                        </a>
                    </xsl:otherwise>
                </xsl:choose>
                <!--<xsl:copy-of select="substring-after($text,']')" />-->
                <xsl:call-template name="create-links">
                    <xsl:with-param name="text" select="substring-after($text,']')"/>
                </xsl:call-template>
            </xsl:when>
            <xsl:otherwise>
                <xsl:copy-of select="$text"/>
            </xsl:otherwise>
        </xsl:choose>
    </xsl:template>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:0)

您的方法存在的问题是,每个命名模板都会创建一个结果树片段,其中包含文本节点和元素的混合(<br>或{{1} })。当您将结果发送到另一个模板的作为字符串时,只有文本节点能够在处理后继续存在。

我建议你首先将输入标记为行作为元素。然后依次发送每一行以由另一个模板处理:

XSLT 1.0

<a>

或者,你可以在第一个模板中调用第二个模板,在返回之前分别为每一行:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:exsl="http://exslt.org/common"
extension-element-prefixes="exsl">
<xsl:output method="html" encoding="utf-8"/>

<xsl:template match="application">
    <xsl:variable name="lines">
        <xsl:call-template name="tokenize-lines">
            <xsl:with-param name="text" select="documentation"/>
        </xsl:call-template>
    </xsl:variable>
    <p>
        <xsl:for-each select="exsl:node-set($lines)/line">
            <xsl:call-template name="create-links">
                <xsl:with-param name="text" select="."/>
            </xsl:call-template>
            <br/>
        </xsl:for-each>
    </p>
</xsl:template>

<xsl:template name="tokenize-lines">
    <xsl:param name="text"/>
    <xsl:choose>
        <xsl:when test="contains($text, '&#xA;')">
            <line><xsl:copy-of select="substring-before($text,'&#xA;')"/></line>
            <xsl:call-template name="tokenize-lines">
                <xsl:with-param name="text" select="substring-after($text,'&#xA;')"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <line><xsl:copy-of select="$text"/></line>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

<xsl:template name="create-links">
    <xsl:param name="text"/>
    <xsl:choose>
        <xsl:when test="contains($text, 'http')">
            <xsl:copy-of select="substring-before($text,'[')"/>
            <xsl:variable name="the_link_and_after">
                <xsl:copy-of select="substring-after($text,'[')"/>
            </xsl:variable>
            <xsl:variable name="the_link">
                <xsl:copy-of select="substring-before($the_link_and_after,']')"/>
            </xsl:variable>
            <xsl:choose>
                <xsl:when test="contains($the_link,'|')">
                    <xsl:variable name="the_url">
                        <xsl:copy-of select="substring-after($the_link,'|')"/>
                    </xsl:variable>
                    <a href="{$the_url}">
                        <xsl:copy-of select="substring-before($the_link,'|')"/>
                    </a>
                </xsl:when>
                <xsl:otherwise>
                    <a href="{$the_link}">
                        <xsl:copy-of select="$the_link"/>
                    </a>
                </xsl:otherwise>
            </xsl:choose>
            <!--<xsl:copy-of select="substring-after($text,']')" />-->
            <xsl:call-template name="create-links">
                <xsl:with-param name="text" select="substring-after($text,']')"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:copy-of select="$text"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

</xsl:stylesheet>