如何对 Emacs 进行编程以语法突出显示以数字指定的 html 字符引用
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下代码片段应该对您有帮助:
但它应该放在加载提供
html-mode
的sgml-mode
之后。您可以使用以下命令强制加载:Following code snippet should help you:
but it should be put after loading of
sgml-mode
that provideshtml-mode
. You can force loading with following command: