summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/markdown-mode.el
diff options
context:
space:
mode:
authorSimeon Simeonov2024-03-14 22:27:34 +0100
committerSimeon Simeonov2024-03-14 22:27:34 +0100
commit236114bdeab5edab09969e5ad398c32c2738dead (patch)
tree42b337b433de9ada45f2aa441833c5cde42c3a1e /.emacs.d/lisp/markdown-mode.el
parent9fffbc025f80ef22a77ccc62f53baa990568b214 (diff)
Upgrade markdown-mode, rust and yasnippet
Diffstat (limited to '.emacs.d/lisp/markdown-mode.el')
-rw-r--r--.emacs.d/lisp/markdown-mode.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/.emacs.d/lisp/markdown-mode.el b/.emacs.d/lisp/markdown-mode.el
index 8094e02..1514edb 100644
--- a/.emacs.d/lisp/markdown-mode.el
+++ b/.emacs.d/lisp/markdown-mode.el
@@ -1855,6 +1855,10 @@ START and END delimit region to propertize."
1855 '(face markdown-markup-face invisible markdown-markup) 1855 '(face markdown-markup-face invisible markdown-markup)
1856 "List of properties and values to apply to markup.") 1856 "List of properties and values to apply to markup.")
1857 1857
1858(defconst markdown-line-break-properties
1859 '(face markdown-line-break-face invisible markdown-markup)
1860 "List of properties and values to apply to line break markup.")
1861
1858(defconst markdown-language-keyword-properties 1862(defconst markdown-language-keyword-properties
1859 '(face markdown-language-keyword-face invisible markdown-markup) 1863 '(face markdown-language-keyword-face invisible markdown-markup)
1860 "List of properties and values to apply to code block language names.") 1864 "List of properties and values to apply to code block language names.")
@@ -2298,7 +2302,7 @@ Depending on your font, some reasonable choices are:
2298 (markdown--match-highlighting . ((3 markdown-markup-properties) 2302 (markdown--match-highlighting . ((3 markdown-markup-properties)
2299 (4 'markdown-highlighting-face) 2303 (4 'markdown-highlighting-face)
2300 (5 markdown-markup-properties))) 2304 (5 markdown-markup-properties)))
2301 (,markdown-regex-line-break . (1 'markdown-line-break-face prepend)) 2305 (,markdown-regex-line-break . (1 markdown-line-break-properties prepend))
2302 (markdown-match-escape . ((1 markdown-markup-properties prepend))) 2306 (markdown-match-escape . ((1 markdown-markup-properties prepend)))
2303 (markdown-fontify-sub-superscripts) 2307 (markdown-fontify-sub-superscripts)
2304 (markdown-match-inline-attributes . ((0 markdown-markup-properties prepend))) 2308 (markdown-match-inline-attributes . ((0 markdown-markup-properties prepend)))