8 lines
149 B
Makefile
8 lines
149 B
Makefile
|
|
.PHONY: filter showAST
|
|
|
|
filter:
|
|
pandoc -fmarkdown -thtml input.md --filter ./filter.hs > output.html
|
|
|
|
showAST:
|
|
pandoc -fmarkdown -tnative input.md
|