We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53126eb commit d7d3a07Copy full SHA for d7d3a07
.gitignore
@@ -1 +1,2 @@
1
*.back
2
+*.pdf
Makefile
@@ -36,3 +36,20 @@ ghpages_action:
36
sudo apt update
37
sudo ${APT_INSTALL} pandoc
38
${MAKE} ghpages
39
+
40
+pdf:
41
+ pandoc README.md \
42
+ --output codeincomplete.pdf \
43
+ --standalone \
44
+ --table-of-contents \
45
+ --toc-depth=3 \
46
+ --number-sections \
47
+ --from gfm \
48
+ --to pdf \
49
+ --wrap=none \
50
+ -V geometry:a4paper \
51
+ -V geometry:margin=2.5cm \
52
+ -V fontsize=12pt \
53
+ --variable=date:"DATE: `date '+%Y-%m-%d'`" \
54
+ --variable=author:"VERSION: `git describe --broken --dirty --always`" \
55
+ --metadata title="Code Incomplete"
0 commit comments