Markdown Blog Writers Using Emacs


Writing posts using markdown is an easy task. But why don’t make the whole process easier? Emacs users would thank for the markdown-mode existence.

After downloading and loading the markdown-mode.el in Emacs you just need configure the latter to autoload the markdown-mode when you open your markdown files (e.g. .md and .markdown).

(autoload 'markdown-mode "markdown-mode"
   "Major mode for editing Markdown files" t)
(add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode))
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))

For usage see Emacs Markdown Mode.


This post was written in markup language. You can find it here.

Geyslan G. Bem
Just an ordinary guy who frequently introduces bugs and still want to be paid for that. Just kidding, sometimes there are free bugs too.
               

comments powered by Disqus