summaryrefslogtreecommitdiff
path: root/doc/format-html
blob: 88147e85b9089de3c2ab30dabdcb3681fab486b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -eu

output="$1"
shift

pandoc  -H vmdb2.css\
        --smart \
        --toc \
        --chapters \
        --number-sections \
	--standalone \
        --self-contained \
        -o "$output" "$@"