summaryrefslogtreecommitdiff
path: root/lisp/markdown.el
blob: 9713d36dca3c54596c36e3912eea5648a5850017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

;;; Code:
(autoload 'markdown-mode "markdown-mode"
  "Use the markdown-mode package to provide 'markdown-mode on-demand."
  t)
(use-package markdown-mode
  :commands (markdown-mode gfm-mode)
  :mode (("README\\.md\\'" . gfm-mode)
         ("\\.md\\'" . markdown-mode)
         ("\\.markdown\\'" . markdown-mode))
  :init (setq markdown-command "pandoc")
  :config
  (setq markdown-fontify-code-blocks-natively t))

(provide 'markdown)
;;; markdown.el ends here