Skip to content

Latest commit

 

History

History
60 lines (46 loc) · 2.38 KB

ome-writing.org

File metadata and controls

60 lines (46 loc) · 2.38 KB

Oh My Emacs Writing

This is part of oh-my-emacs.

This file contains some packages for document writing.

Prerequisites

PackageWindowsUbuntu/Debian/MintArchLinuxFedoraMac OS XMandatory?
markdownmarkdownNo

El-get packages

PackageStatusDescription
markdown-modeRequiredMarkdown is so popular that this package is required

Markdown

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)

Todo