XSL: вырезать HTML и обрезать - PullRequest
0 голосов
/ 07 ноября 2011

Я хочу запустить это

<!-- This will remove the tag -->
<xsl:template name="remove-html">
    <xsl:param name="text"/>
    <xsl:choose>
        <xsl:when test="contains($text, '&lt;')">
            <xsl:value-of select="normalize-space(substring-before($text, '&lt;'))"/>
            <xsl:text> </xsl:text>
            <xsl:call-template name="remove-html">
                <xsl:with-param name="text" select="normalize-space(substring-after($text, '&gt;'))"/>
            </xsl:call-template>
        </xsl:when>
        <xsl:otherwise>
            <xsl:value-of select="normalize-space($text)"/>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>

и это

<xsl:choose>
    <xsl:when test="string-length(header) > 22">
        <xsl:value-of select="substring(header, 0, 22)" />
        <xsl:text>&#8230;</xsl:text>
    </xsl:when>
    <xsl:otherwise>
        <xsl:value-of select="header" />
    </xsl:otherwise>
</xsl:choose>

вместе ... как я могу это сделать?

Ответы [ 2 ]

2 голосов
/ 07 ноября 2011
<xsl:variable name="stripped">
    <xsl:call-template name="remove-html">
        <xsl:with-param name="text" select="???"/>
    </xsl:call-template>
</xsl:variable>
<xsl:choose>
    <xsl:when test="string-length($stripped) > 22">
        <xsl:value-of select="substring($stripped, 0, 22)" />
        <xsl:text>&#8230;</xsl:text>
    </xsl:when>
    <xsl:otherwise>
        <xsl:value-of select="$stripped" />
    </xsl:otherwise>
</xsl:choose>

Заменить ??? на соответствующий узел

0 голосов
/ 07 ноября 2011

Оберните ваш второй выбор в именованном шаблоне, затем замените значение value в первом на шаблон вызова.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...