Tweak audio/festvox-el11 version 1.4.0_2
[dports.git] / textproc / markdown-mode.el / pkg-message
1 ========================================================================
2
3 To use markdown-mode in Emacs/XEmacs, add the following lines to
4 your ~/.emacs replacing "text" with your preferred markdown extension.
5
6 (autoload 'markdown-mode "markdown-mode.el"
7   "Major mode for editing Markdown files" t)
8
9 (setq auto-mode-alist
10   (cons '("\\.text" . markdown-mode) auto-mode-alist))
11
12 ========================================================================