hello this is pandoc blog
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# show all recipes
|
|
default:
|
|
just --list
|
|
|
|
# build
|
|
build:
|
|
make build
|
|
|
|
# watch for changes
|
|
watch:
|
|
ls content/*.md | entr make build
|
|
|
|
# upload
|
|
up:
|
|
echo "TODO"
|
|
|
|
# clean dist
|
|
clean:
|
|
rm -rf dist/*
|
|
touch dist/.gitkeep
|
|
|