git/build.sh
2024-02-28 15:39:27 +01:00

17 lines
340 B
Bash
Executable file

#! /usr/bin/env bash
FILE="$(realpath "${BASH_SOURCE[0]}")"
ROOT="$(dirname "${FILE}")"
OUTPUT="${ROOT}/out"
rm --force --recursive "${OUTPUT}"
mkdir --parents "${OUTPUT}"
pandoc \
--verbose \
--standalone \
--self-contained \
--output "${OUTPUT}/index.html" \
--write 'revealjs' \
-V revealjs-url='/sw/revealjs/up' \
"${ROOT}/index.md"