答案1
使用以下示例答案,请随意将背景和前景色更改为您想要的任何颜色(只要颜色存在) - 请参阅M-x list-colors-display
笔记:许多其他模式继承了文本模式,并在其基础上添加了其他内容。例如,以下示例答案在文本模式下有效,但也可以在 latex 模式下工作(继承了文本模式设置)。避免继承设置的最简单解决方案是使用特定模式(文本模式除外)来编写 Markdown 文件并为该特定模式设置字体锁定附加内容。这是 tt-mode 的链接,它非常有助于更好地理解字体锁定的工作原理,您可以设置类似的内容来为 Markdown 文件创建自己的自定义模式。 https://github.com/davorg/tt-mode/ 不过,我觉得 Markdown 一定已经存在特殊模式,你可以使用这些模式,然后只需将答案中的代码行更改为你最终决定的模式 - 例如,http://www.emacswiki.org/emacs/MarkdownMode
(defvar lawlist-super-orange (make-face 'lawlist-super-orange))
(set-face-attribute 'lawlist-super-orange nil :background "white" :foreground "orange" :bold t :underline nil :font "Courier" :height 180)
(defvar lawlist-super-cyan (make-face 'lawlist-super-cyan))
(set-face-attribute 'lawlist-super-cyan nil :background "white" :foreground "cyan" :bold t :underline nil :font "Courier" :height 180)
(add-hook 'text-mode-hook
(lambda () (font-lock-add-keywords nil (list
(list (concat "\\(´\\)\\(\\(.\\|\n\\)+?\\)\\(´\\)")
'(1 lawlist-super-orange t)
'(2 lawlist-super-cyan t)
'(4 lawlist-super-orange t))
(list (concat "lawlist\\|´\\|towi")
'(0 lawlist-super-orange t)) ))))