Mercurial > evolve
comparison docs/tutorial/compile.sh @ 3376:aad37ffd7d58
doc: import the training support
Import the training support which was stored in a private-repository before.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Mon, 08 Jan 2018 11:46:53 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
3375:1cb549cd6236 | 3376:aad37ffd7d58 |
---|---|
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 |