Skip to content

Instantly share code, notes, and snippets.

@hsipeng
Created November 20, 2017 12:21
Show Gist options
  • Save hsipeng/19ec7188c129f8486ef2885b0404d135 to your computer and use it in GitHub Desktop.
Save hsipeng/19ec7188c129f8486ef2885b0404d135 to your computer and use it in GitHub Desktop.
pandoc kindlegen 电子书生成
include_dir=build
source=chapters/*.md
title='Growth'
filename='growth'
all: html epub rtf pdf mobi
markdown:
awk 'FNR==1{print ""}{print}' $(source) > $(filename).md
html: markdown
pandoc -s $(filename).md -t html5 -o index.html -c style.css \
--include-in-header $(include_dir)/head.html \
--include-before-body $(include_dir)/author.html \
--include-before-body $(include_dir)/share.html \
--include-after-body $(include_dir)/stats.html \
--title-prefix "Growth: 全栈增长工程师指南" \
--normalize \
--smart \
--toc
epub: markdown
pandoc -s $(filename).md --normalize --smart -t epub -o $(filename).epub \
--epub-metadata $(include_dir)/metadata.xml \
--epub-stylesheet epub.css \
--epub-cover-image img/growth.jpg \
--title-prefix $(title) \
--normalize \
--smart \
--toc
rtf: markdown
pandoc -s $(filename).md -o $(filename).rtf \
--title-prefix $(title) \
--normalize \
--smart
pdf: markdown
# OS X: http://www.tug.org/mactex/
# Then find its path: find /usr/ -name "pdflatex"
# Then symlink it: ln -s /path/to/pdflatex /usr/local/bin
pandoc -s $(filename).md -o $(filename).pdf \
--title-prefix $(title) \
--listings -H listings-setup.tex \
--template=template/template.tex \
--normalize \
--smart \
--toc \
--latex-engine=`which xelatex`
mobi: epub
# Symlink bin: ln -s /path/to/kindlegen /usr/local/bin
kindlegen $(filename).epub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment