quest/justfile

25 lines
563 B
Plaintext

# show all commands
default:
just --list --unsorted
# build player-facing html
public:
pandoc -f markdown+autolink_bare_uris \
-t html \
--standalone \
--toc \
--metadata title="BASEMENT QUEST" \
-H includes/styles.html \
src/basementquest.md > www/basementquest.html
# build referee-facing html
spoilers:
cat src/basementquest.md src/spoilers.md |\
pandoc -f markdown+autolink_bare_uris \
-t html \
--standalone \
--toc \
--metadata title="BASEMENT QUEST" \
-H includes/styles.html \
> www/spoilers.html