We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91942ef commit ef87fd1Copy full SHA for ef87fd1
diagram-generator/.gitignore
@@ -0,0 +1 @@
1
+sample.html
diagram-generator/Makefile
@@ -1,3 +1,11 @@
-test:
2
- @pandoc --self-contained --lua-filter=diagram-generator.lua --metadata=activatePythonPath:"python3 --version" --metadata=pythonPath:"python3" --metadata=title:"README" sample.md -o output.html
+.PHONY: test
+test: sample.html
3
+
4
+sample.html: sample.md
5
+ @pandoc --self-contained \
6
+ --lua-filter=diagram-generator.lua \
7
+ --metadata=activatePythonPath:"python3 --version" \
8
+ --metadata=pythonPath:"python3" \
9
+ --metadata=title:"README" \
10
+ --output=$@ $<
11
0 commit comments