This is part of oh-my-emacs.
This file contains some packages for document writing.
Package | Windows | Ubuntu/Debian/Mint | ArchLinux | Fedora | Mac OS X | Mandatory? |
---|---|---|---|---|---|---|
markdown | markdown | No |
Package | Status | Description |
---|---|---|
markdown-mode | Required | Markdown is so popular that this package is required |
Markdown is a lightweight markup language, which is very popular as a doc writing format in many popular open source projects.
markdown-pp is a preprocessor for Markdown files to generate a table of contents and other documentation needs, so I add “mdpp” file to markdown-mode’s auto-mode-alist.
markdown-mode also support html export. Under the hood, it adopts the original
markdown perl script to do the heavy job. So you need to install it before
markdown-export
.
The author of markdown-mode, Jason Blevins, is an assistant professor of economics at the ohio state university, who maintains a lot of open source softwares, which is amazing.
(defun ome-markdown-mode-setup ()
(add-to-list 'auto-mode-alist
'("\\.mdpp" . markdown-mode)))
(ome-install 'markdown-mode)
- Integrate graphviz-dot-mode