summaryrefslogtreecommitdiff
path: root/pandoc.sh
blob: 4485584bcce8e1da0a3f3418812543d1a5a83947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -eu

pandoc \
    --filter ./pandoc-fable-filter \
    --toc \
    --number-sections \
    -Vdocumentclass:report \
    -Vtitlepage:true \
    -Vfontsize:12pt \
    "-Vmainfont:Bitstream Charter" \
    -Vsansfont:Cabin \
    "-Vmonofont:Courier 10 Pitch" \
    -Vgeometry:top=2cm,bottom=2.5cm,left=2cm,right=1cm \
    "$@"