In the last article, we learned how Markdown can quickly help you produce clean HTML code to be used in a website or blog. But what if you also want to produce an ebook using the same content as you have on the web? While the Markdown tool set is targeted at creating web content, there is another tool that allows you to take Markdown and turn it into OpenOffice/LibreOffice documents, PDF’s, or even e-books suitable for a Kindle or other e-reader – Pandoc.
Installing the pandoc package on an Ubuntu system is dead simple with the following command:
sudo apt-get install pandoc
pandoc -r markdown -w html -o *yourfilename*.html *yourfilename*.md
- “-r” – read format
- “-w” – write format
- “-o” – filename of the output
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:pandoc -r markdown -w odt -o pandoctemplate.odt *yourfilename*.md
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:
pandoc -r markdown -w odt --reference-odt=pandoctemplate.odt -o *yourfilename*.odt *yourfilename*.md
--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:pandoc -r markdown -o *yourfilename*.pdf *yourfilename*.md
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
pandoc -r markdown -w epub --epub-metadata=*metadatafile*.xml --epub-cover-image=*coverimage*.jpg --epub-stylesheet=*stylesheet*.css -o *yourfilename*.epub *yourfilename*.md
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, Epistle, 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.
Image credit: Typewriter closeup shot, concept of Chapter one by Big Stock Photo.
Source: Maketecheasier
Tidak ada komentar