vumpire/www/justfile

12 lines
196 B
Plaintext

# list all
default:
just --list --unsorted
# make html from markdown
html:
pandoc -f markdown -t html --toc -s -o index.html game.md
# watch for changes
watch:
ls game.md | entr just html