vumpire/html/justfile
2023-09-20 06:56:52 -06:00

12 lines
196 B
Makefile

# 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