我想问你以下问题: 我有一个基于html的新闻通讯,该新闻通讯链接到自动添加的文章。这些文章显示为:
Title:
Article 1 pub date
description
Article 2 pub date
description and so on
我想在文章说明或标题中突出显示某些单词。例如“测试”。 (或换句话说,添加一条规则,以确保每次在新闻简报中都加载文章,并且该特定单词出现在突出显示的文章之一中。希望您可以向我提供一些提示,以帮助我应该将某些代码放在下面或其他位置(html代码具有and和)。
谢谢。
确保文章已加载的部分如下:
<!-- This part generates the articles -->
<xsl:template match="story" mode="article">
<xsl:if test="related">
<tr>
<td><a><xsl:attribute name="name"><xsl:value-of select="storyid"/></xsl:attribute></a></td>
</tr>
<tr>
<td style="font-size: 9pt; text-decoration: none;"><a><xsl:attribute name="href"><xsl:value-of select="weburl"/></xsl:attribute><xsl:value-of select="titel"/></a> - <xsl:value-of select="source_lang"/>
<xsl:if test="type='WEBARTICLE' and weburl!=''"> online</xsl:if></td>
</tr>
<xsl:if test="snippet!=''">
<tr>
<td style="line-height: 5px;"><xsl:text disable-output-escaping="yes"><![CDATA[ ]]></xsl:text></td>
</tr>
<tr><td style="font-size: 9pt; text-decoration: none;">
...<xsl:apply-templates select="snippet"/>...</td>
</tr>
</xsl:if>