blob: dc296c1dc590a38cd4685d251b3f77160d5d28d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[
{ type: install
message: <<EOM
To use markdown-mode in Emacs, add the following lines to your Emacs
configuration replacing "text" with your preferred markdown extension.
(autoload 'markdown-mode "markdown-mode.el"
"Major mode for editing Markdown files" t)
(setq auto-mode-alist
(cons '("\\.text" . markdown-mode) auto-mode-alist))
EOM
}
]
|