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

15 lines
293 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 \
--standalone \
--self-contained \
--output "${OUTPUT}/index.html" \
--write 'revealjs' \
"${ROOT}/index.md"