(no commit message)
[ikiwiki.git] / doc / tips / Emacs_and_markdown.html
blobfcff8f0a5a5f981de7db608ade394aa61ee3302e
1 I added the following to my <code>.emacs</code>.
3 The hook is to convert tabs to spaces to avoid unpleasant
4 surprises with code blocks. For source to ska-untabify see the
5 <a href="http://www.emacswiki.org/cgi-bin/wiki/UntabifyUponSave">EmacsWiki</a>
6 <pre>
7 (autoload 'markdown-mode "markdown-mode")
8 (add-to-list 'auto-mode-alist '("\\.mdwn" . markdown-mode))
10 (add-hook 'markdown-mode-hook
11 '(lambda ()
12 (make-local-hook 'write-contents-hooks)
13 (add-hook 'write-contents-hooks 'ska-untabify nil t)))
14 </pre>
16 ;; [[DavidBremner]]