blob: f55adea33daebe5983f8e8817f321a0212ed5ac6 (
plain)
1
2
3
4
5
6
7
|
all:
pandoc -c style.css -V title:"" -s --to=html --metadata title=listout -o index.html index.md
pandoc -c style.css -V title:"" -s --to=html --metadata title=about -o ~about about.md
clean:
rm -fr *.html
rm -fr ./~about
|