summarylogtreecommitdiffstats
path: root/emacs-markdown-mode-git.install
blob: fe9dcf0bca63094d9534a34515d2ab0f62010f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
    cat <<EOF
==> Add this code to your Emacs init to use markdown-mode:

(autoload 'markdown-mode "markdown-mode.el"
   "Major mode for editing Markdown files" t)
(setq auto-mode-alist
   (cons '("\.md" . markdown-mode) auto-mode-alist))

EOF
}


post_upgrade() {
	post_install $1
}