Hi.
I'm also trying to highlight a specific word or phrase in the text of
a document. However, the input is coming from the command line. Erik's
example helped me alot, but I'm having a little difficulty with the
recursion. Within the same element, I only get the first two instances
of the word highlighted.
The code is below. Any help would be appreciated.
Thanks,
Cindy
Cindy Girard
clm6u(_at_)virginia(_dot_)edu
-----------------------
<xsl:template name="highlight">
<xsl:param name="keyword" select="$keyword"/>
<xsl:param name="input" select="."/>
<xsl:param name="search-string" select="$keyword"/>
<xsl:choose>
<xsl:when test="$search-string and contains($input, $search-string)">
<xsl:value-of select="substring-before($input, $search-string)"/>
<hi rend="highlight">
<xsl:value-of select="$search-string"/>
</hi>
<xsl:call-template name="highlight">
<xsl:with-param name="input" select="substring-after($input,
$search-string)"/>
<xsl:with-param name="search-string" select="$search-string"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="p">
<xsl:copy>
<xsl:apply-templates
select="*|@*|comment()|processing-instruction()"/>
<xsl:call-template name="highlight" select="p"/>
</xsl:copy>
</xsl:template>
--~------------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--