diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/markdown.el | 4 |
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 |