2020-11-12 12:13:24 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2020-12-25 11:40:03 -05:00
|
|
|
VERSION=1.0.0
|
2020-11-12 12:13:24 -05:00
|
|
|
FILES="
|
|
|
|
title.txt
|
|
|
|
index.md
|
2020-12-25 11:40:03 -05:00
|
|
|
character-sheets.md
|
|
|
|
character-sheets/*.md
|
2020-11-12 12:13:24 -05:00
|
|
|
"
|
|
|
|
|
|
|
|
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
|
2020-12-25 11:40:03 -05:00
|
|
|
|
|
|
|
VERSION="${VERSION}-character-sheets"
|
|
|
|
FILES="
|
|
|
|
character-sheets-title.txt
|
|
|
|
character-sheets.md
|
|
|
|
character-sheets/*.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
|