Files
the-monospace-web-pandoc/Makefile
Oskar Wickström b3fc119ff4 add debug button
2024-08-25 10:31:12 +02:00

11 lines
193 B
Makefile

all: index.html
clean:
rm -f index.html
index.html: index.md template.html Makefile
pandoc --toc -s --css reset.css --css index.css -i $< -o $@ --template=template.html
.PHONY: all clean