如何更改 Emacs 中 HTML 标签之间元素的字体?

发布于 2024-08-17 22:34:02 字数 417 浏览 3 评论 0原文

我的 .emacs 中有这个: (set-frame-font "Consolas-10")

我也尝试过这个: (set-frame-font "Consolas-10") code>

标签之间的字体不是 Consolas(或者斜体 Consolas):

alt 文本 http://img10.imageshack.us/img10/6865/emacs2.jpg

如何更改 html 标签之间元素的字体(或禁用斜体、粗体、 ETC。)?

I have this in my .emacs: (set-frame-font "Consolas-10")

and I also tried this: (set-frame-font "Consolas-10")

But the font between the <h2>tags are not Consolas (or maybe Italic Consolas):

alt text http://img10.imageshack.us/img10/6865/emacs2.jpg

How can I change the font of elements between html tags (or disable italics, bold, etc.)?

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

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

发布评论

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

评论(1

各自安好 2024-08-24 22:34:02

看看你的之前的问题在我看来您应该能够使用相同的想法,只需禁用字体上的斜体(如果您还想禁用粗体和下划线,请包括其他问题中的所有其他设置):

(mapc
  (lambda (face)
    (set-face-attribute face nil :slant 'normal))
  (face-list))

Looking at your earlier question it seems to me that you should be able to use the same idea and simply disable the use of italics on font faces (include all the other setting from that other question if you want to disable bold and underline as well):

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