view docs/tutorial/compile.sh @ 5691:6eb9f82b43ba stable

evolve: remove spurious "working directory is now at ..." messages The `startnode` variable was sometimes a context, which made the comparison with `repo[b'.'].node()` in `_cleanup()` fail. This patch fixes that by making sure that `startnode` is always a (binary) nodeid.
author Martin von Zweigbergk <martinvonz@google.com>
date Tue, 24 Nov 2020 18:04:40 -0800
parents aad37ffd7d58
children
line wrap: on
line source

#!/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