summaryrefslogtreecommitdiff
path: root/lisp/markdown.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-03-04 15:42:17 -0500
committermattkae <mattkae@protonmail.com>2023-03-04 15:42:17 -0500
commit5a0e0d0bb30e5ace9775a3625464f9b62f946880 (patch)
tree9ad5b1afb3b0b10eb286f4b3ae765d8710f2c07a /lisp/markdown.el
parent5cd6542a83a58a49f8d31e6a40ef4785ce059d47 (diff)
Improved markdown mode to include highlights
Diffstat (limited to 'lisp/markdown.el')
-rw-r--r--lisp/markdown.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/markdown.el b/lisp/markdown.el
index 0523913..9713d36 100644
--- a/lisp/markdown.el
+++ b/lisp/markdown.el
@@ -8,7 +8,9 @@
:mode (("README\\.md\\'" . gfm-mode)
("\\.md\\'" . markdown-mode)
("\\.markdown\\'" . markdown-mode))
- :init (setq markdown-command "pandoc"))
+ :init (setq markdown-command "pandoc")
+ :config
+ (setq markdown-fontify-code-blocks-natively t))
(provide 'markdown)
;;; markdown.el ends here