summaryrefslogtreecommitdiff
path: root/format.sh
blob: 21f94c24155799ab049e1326ac1b6815b936deab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh

set -eu

cleanup()
{
    rm -f tmp.md
}

trap cleanup EXIT

cat vmdb2.md vmdb/plugins/*.mdwn > tmp.md
if command -v sp-docgen > /dev/null
then
    sp-docgen tmp.md -o vmdb2.html
    if command -v pdflatex > /dev/null
    then
	sp-docgen tmp.md -o vmdb2.pdf
    fi
else
    pandoc \
	--self-contained \
	--standalone \
	--css vmdb2.css \
	--toc \
	--number-sections \
	-o vmdb2.html \
	tmp.md

    if command -v pdflatex > /dev/null
    then
	pandoc \
            --toc \
            --number-sections \
            -Vdocumentclass=report \
            -Vgeometry:a4paper \
            -Vfontsize:12pt \
            -Vmainfont:FreeSerif \
            -Vsansfont:FreeSans \
            -Vmonofont:FreeMonoBold \
            '-Vgeometry:top=2cm, bottom=2.5cm, left=2cm, right=1cm' \
            -o vmdb2.pdf \
            tmp.md
    fi
fi