branch | mercurial-4.1 |
changeset 3420 | b21a3753255f |
parent 3376 | aad37ffd7d58 |
child 5226 | 38d225efcea9 |
3382:f14ad1e83896 | 3420:b21a3753255f |
---|---|
1 #!/bin/bash |
|
2 set -eox pipefail |
|
3 |
|
4 |
|
5 function compile { |
|
6 pandoc \ |
|
7 -s $1 \ |
|
8 -o $2 \ |
|
9 --toc --toc-depth=4 \ |
|
10 -F pandocfilters/examples/graphviz.py -F mypandocfilters/graphviz-file.py -F mypandocfilters/raw-file.py \ |
|
11 -t html5 \ |
|
12 --template standalone.html --variable=template_css:uikit.css |
|
13 |
|
14 } |
|
15 |
|
16 compile slides.md index.html |