Skip to content

Instantly share code, notes, and snippets.

@vikbert
Last active October 3, 2018 12:12
Show Gist options
  • Select an option

  • Save vikbert/ba48c909b4c6a47c2d906f733cd6d21c to your computer and use it in GitHub Desktop.

Select an option

Save vikbert/ba48c909b4c6a47c2d906f733cd6d21c to your computer and use it in GitHub Desktop.
[ebook] all about ebook #ebook, #epub, #mobi, #md

eBook

Markdown

is a writing format, not a publishing format.

eBook Format

there are two main formats for ebook:

  • epub
  • mobi

mobi format is famous because of Amazon Kindle Personally I prefer creating the MOBI myself so I can be 100% sure that the formatting is what I want.

eBook converter

use pandoc to create the epub and mobi file. To install pandoc CLI http://pandoc.org/installing.html

To add pandoc metadata to md file

% title
% author(s) (separated by semicolons)
% date

To convert md to epub

pandoc -o 04_testing.epub 04_testing.md

To customize the font size of code block in pandoc

pip install pandoc-latex-fontsize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment