如何在 DocBook 5.0 中使用自定义语法荧光笔样式

发布于 2024-10-12 06:28:14 字数 600 浏览 2 评论 0原文

我使用基于 C++ 示例的自定义语言荧光笔在文档上进行语法突出显示。

如何对同一荧光笔类型使用不同的样式?

例如:

<highlighter type="keywords">

<keyword>char</keyword>

<keyword>const</keyword>

<keyword>double</keyword>

<keyword>true</keyword>
<style>keyword</style>

</highlighter>

<highlighter type="keywords">

<keyword>Hotspot</keyword>

<keyword>Character</keyword>

<keyword>Region</keyword>
<style>class</style>

第二次加载关键字应使用“class”样式突出显示,但如何定义和测试这种非默认样式?

I have syntax highlighting on a docbook using a custom language highlighter based on the c++ example.

How can I use different styles for the same highlighter type?

for instance:

<highlighter type="keywords">

<keyword>char</keyword>

<keyword>const</keyword>

<keyword>double</keyword>

<keyword>true</keyword>
<style>keyword</style>

</highlighter>

<highlighter type="keywords">

<keyword>Hotspot</keyword>

<keyword>Character</keyword>

<keyword>Region</keyword>
<style>class</style>

the second load of keywords should highlight with the style 'class' but how do I define and test for this non-default style?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白云悠悠 2024-10-19 06:28:14

已解决:

 <xsl:template match='xslthl:class' mode="xslthl">
 <b style="color: green"><xsl:apply-templates/></b>
 </xsl:template>

“模式”属性似乎至关重要

Solved:

 <xsl:template match='xslthl:class' mode="xslthl">
 <b style="color: green"><xsl:apply-templates/></b>
 </xsl:template>

the 'mode' attribute seems vital

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文