summaryrefslogtreecommitdiff
path: root/paper/lua-filters/author-info-blocks/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'paper/lua-filters/author-info-blocks/Makefile')
-rw-r--r--paper/lua-filters/author-info-blocks/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/paper/lua-filters/author-info-blocks/Makefile b/paper/lua-filters/author-info-blocks/Makefile
new file mode 100644
index 0000000..341c44d
--- /dev/null
+++ b/paper/lua-filters/author-info-blocks/Makefile
@@ -0,0 +1,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