docs/tutorial/compile.sh
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 16 Mar 2018 14:59:10 +0530
branchstable
changeset 3531 b3d2e0576d4c
parent 3376 aad37ffd7d58
child 5226 38d225efcea9
permissions -rwxr-xr-x
prev: add a test case which shows traceback when doing prev on obsolete cset This patch adds a test which shows how `hg prev` is borken when called from a obsolete changeset and there is an active topic. The next patch will fix that.

#!/bin/bash
set -eox pipefail


function compile {
    pandoc \
    -s $1 \
    -o $2 \
    --toc --toc-depth=4 \
    -F pandocfilters/examples/graphviz.py -F mypandocfilters/graphviz-file.py -F mypandocfilters/raw-file.py \
    -t html5 \
    --template standalone.html --variable=template_css:uikit.css

}

compile slides.md index.html