18 lines
453 B
Bash
Executable File
18 lines
453 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# HTML doc generation. Needs 'pandoc'.
|
|
|
|
INPUT=$1
|
|
BASE=$(basename -s .md $INPUT)
|
|
|
|
if test -f "$BASE.css"
|
|
then
|
|
pandoc --pdf-engine-opt=--enable-local-file-access -t html -F mermaid-filter --css $BASE.css $INPUT -o $BASE.pdf
|
|
else
|
|
pandoc --pdf-engine=xelatex -F mermaid-filter $INPUT -o $BASE.pdf
|
|
# pandoc --pdf-engine-opt=--enable-local-file-access -t html -F mermaid-filter $INPUT -o $BASE.pdf
|
|
fi
|
|
|
|
## See also pandoc --number-sections
|
|
|