readableFilter/makefile
2025-04-20 21:27:40 +08:00

11 lines
218 B
Makefile

.PHONY: filter showAST nofilter
nofilter:
pandoc -fmarkdown -thtml input.md > output.html
filter:
pandoc -fmarkdown -thtml input.md --filter ./filter.hs > output.html
showAST:
pandoc -fmarkdown -tnative input.md