blob: 97e5b92a8f0331bf3efdf873433aa6bdb8f28279 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;;; 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 "multimarkdown"))
(provide 'markdown)
;;; markdown.el ends here
|