vumpire/www/justfile

12 lines
196 B
Plaintext
Raw Normal View History

2023-09-20 12:56:52 +00:00
# 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