docs/tutorial/compile.sh
changeset 3376 aad37ffd7d58
child 5226 38d225efcea9
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