如何对 Emacs 进行编程以语法突出显示以数字指定的 html 字符引用

发布于 2024-11-19 06:56:37 字数 195 浏览 2 评论 0原文

在 html 主要模式下,Emacs 被编程为语法高亮显示 html 字符实体引用(即,由名称指定的字符引用,例如  ),但由于某种原因,不显示数字字符引用(例如、  或  )。我想这是在给定模式下自定义语法突出显示的更普遍问题的一个特例。我想这涉及到正则表达式的一些使用。有人可以给我一些关于如何开始使用这个的指导吗?

In html major mode, Emacs is programmed to syntax highlight html character entity references (i.e., character references specified by name, e.g.,  ) but not, for some reason, numeric character references (e.g.,   or  ). I guess this is a special case of the more general problem of customizing syntax highlight in a given mode. I imagine it involves some use of regexes. Can someone give me some guidance on how get started with this?

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

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

发布评论

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

评论(1

染火枫林 2024-11-26 06:56:37

以下代码片段应该对您有帮助:

(add-to-list 'sgml-font-lock-keywords-2 
   '("\\&#x?[0-9a-fA-F][0-9a-fA-F]*;?" . font-lock-variable-name-face))

但它应该放在加载提供 html-modesgml-mode 之后。您可以使用以下命令强制加载:

(require 'sgml-mode)

Following code snippet should help you:

(add-to-list 'sgml-font-lock-keywords-2 
   '("\\&#x?[0-9a-fA-F][0-9a-fA-F]*;?" . font-lock-variable-name-face))

but it should be put after loading of sgml-mode that provides html-mode. You can force loading with following command:

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