11 lines
218 B
Makefile
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
|