Installing the pandoc package on an Ubuntu system is dead simple with the following command: Once installed, you can immediately use Pandoc in place of Markdown to create HTML with the following command: The syntax and flags are as follow:
“-r” – read format “-w” – write format “-o” – filename of the output
What the above command do is to read from a markdown file and output the file in HTML format with the same filename. The above example outputs the file in HTML format, but you can use Pandoc to generate other formats as well.
Open Document Text Format (ODT)
If you’ll need to exchange your document with people using a more generic office suite, such as OpenOffice/LibreOffice or Microsoft Office, you can convert it to ODT format using Pandoc. If you think you’ll do this often, it’s useful to set up a template beforehand. Firstly, create a simple document (such as a header and a line or two of text) in Markdown and convert it to ODT with the following command: Then, open the “pandoctemplate.odt” file in Open/LibreOffice to change the fonts, spacing, margins, etc… to your liking. Be sure to use Styles to configure this – some details on the use of styles are available here. Once your document is set up to your liking, you can use it as a template for creating ODT files from Markdown in the future by adding it to the above command: Now when you convert a Markdown file to ODT, it will automatically be formatted with the styles you have created earlier. Pandoc also supports conversion to the new (version 2007 and later) Microsoft Word format with the flag “–reference-docx=templatefile.docx“.
Portable Document Format (PDF)
When I need to generate PDF files from Markdown, I’ll most often convert it ODT, and use either LibreOffice’s Export to PDF function, or if it’s a large group of files, the “unoconv” command line utility. If you’re a LaTeX user, and have a number of packages installed (this section of the Pandoc documentation describes what’s required), you can output PDF’s with the following command: Note the absence of the “-w” flag in this case.
ePub e-Books
To publish e-books suitable for most electronic readers (ePub is a format handled by almost all readers), you may want to have some items specific to that format prepared in advance. These include:
A stylesheet, written in CSS, that describes how the ePub will look Metadata, such as the creator, description, rights to the work, and language A cover image
If you don’t have these, however, Pandoc will use some reasonable defaults. The following command will convert your Markdown document to an ePub:
Additional Markdown Tips
Here are some additional tips and tricks I use in the course of using Markdown for my writing tasks:
Since it’s plain text, if you use DropBox to keep files in sync between devices, you can use the built-in text editor to create or update your Markdown documents on the Web. There are also editors available for Linux (I happen to like ReText a lot) and Android (I’ve been switching between Writer and the code editor DroidEdit lately). Also, since it’s plain text, concurrent versioning systems (such as Subversion) do an excellent job of tracking versions and showing the differences between them. Once you’ve converted a couple of documents, and know which flags you need for all the formats you want, you can create a simple shell script that will output them all at once.
I’ve found Markdown to be an excellent way to draft content, in a “distraction-free” environment (most plain text editors are), that supports output to multiple formats, yet doesn’t require any dedicated applications. Image credit: Typewriter closeup shot, concept of Chapter one by Big Stock Photo.