the-source/src/build.sh

31 lines
547 B
Bash
Raw Normal View History

2020-11-12 12:13:24 -05:00
#!/usr/bin/env bash
set -e
VERSION=0.3
FILES="
title.txt
index.md
"
pandoc \
-o ../out/the_source-${VERSION}.epub \
--toc \
--toc-depth=2 \
--wrap=preserve \
--epub-chapter-level=2 \
--resource-path=. \
$FILES
pandoc \
-o ../out/the_source-${VERSION}.pdf \
--include-in-header sectionpagebreak.tex \
--variable=subparagraph \
--toc \
--toc-depth=2 \
--pdf-engine xelatex \
--resource-path=. \
$FILES
ebook-convert ../out/the_source-${VERSION}.epub ../out/the_source-${VERSION}.mobi