summaryrefslogtreecommitdiff
path: root/paper/lua-filters/author-info-blocks/Makefile
blob: 341c44d226ce674c314159eeb437604bc5977208 (plain)
1
2
3
4
5
6
7
8
test: sample.md author-info-blocks.lua
	@pandoc --lua-filter=author-info-blocks.lua --standalone --to=native $< \
	    | diff -u expected.native -

expected.native: sample.md author-info-blocks.lua
	pandoc --lua-filter=author-info-blocks.lua --standalone --output $@ $<

.PHONY: test