branch: elpa/markdown-mode commit ac9ea26b941eef512a3c206375a6404625c229ed Merge: a2a7eed 288aff5 Author: Shohei YOSHIDA <syo...@gmail.com> Commit: GitHub <nore...@github.com>
Merge pull request #608 from jrblevin/simplify-sample-config Simplify sample config --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index ed367a3..b3c21c3 100644 --- a/README.md +++ b/README.md @@ -79,9 +79,7 @@ example; adjust settings as desired): ```lisp (use-package markdown-mode :ensure t - :mode (("\\.md\\'" . markdown-mode) - ("\\.markdown\\'" . markdown-mode) - ("README\\.md\\'" . gfm-mode)) + :mode ("README\\.md\\'" . gfm-mode) :init (setq markdown-command "multimarkdown")) ```