A Sublime Text 2 plugin for calling the Pandoc Markdown renderer to create HTML and DocX output. Pandoc does a LOT more than this but this is the specific functionality I use.
The easiest way is to install "SublimePandoc" using Package Control.
You can also grab the latest from Github and install it into your Sublime Text 2 Packages folder.
$ git clone git://github.com/jclement/SublimePandoc.git
You'll need to download and install Pandoc and have it in your PATH.
pandoc_render will render the markdown to HTML or DOCx and takes the following optional arguments:
Menu items for common tasks should show up under Tools > Pandoc.
The following hints can be added in your document to flip on additional features in Pandoc. (Note: these hints are processed by the plugin and NOT part of Pandoc itself)
\: Add a Table of Contents to the top of your output document.
\: Turn on numbering of sections.
"template.html" controls the output of the HTML documents and "reference.docx" is used for style definitions for DOCX output.
Note: If you are using a pre-built binary of Pandoc you will be unable to customize the reference.docx using Microsoft Word in versions <= 1.9.1
The default keymapping on Windows...
[
{ "keys": ["ctrl+alt+r"],
"command":"pandoc_render",
"args":{"openAfter":true, "target":"html", "writeBeside":false},
"context":[{"key": "selector", "operator": "equal", "operand": "text.html.markdown" }]},
{ "keys": ["ctrl+alt+shift+d"],
"command":"pandoc_render",
"args":{"openAfter":true, "target":"docx", "writeBeside":true},
"context":[{"key": "selector", "operator": "equal", "operand": "text.html.markdown" }]},
{ "keys": ["ctrl+alt+shift+r"],
"command":"pandoc_render",
"args":{"openAfter":false, "target":"html", "writeBeside":true},
"context":[{"key": "selector", "operator": "equal", "operand": "text.html.markdown" }]}
]