Add *Makefile* and Sed scripts for PDF-comilation via pandoc.
Also update *.gitignore*
--- /dev/null
+ALL = \
+ welcome-letter.pdf \
+ tutorial.pdf \
+
+all: $(ALL)
+
+OPTS = \
+ -s -f markdown -t latex -V geometry=margin=2.5cm \
+ -V classoption=12pt,a4paper -V links-as-notes \
+ -V header-includes=\\usepackage{nopageno}
+
+
+%.pdf: %.mdwn
+ cat $< |\
+ sed -f sed/latex.sed |\
+ pandoc $(OPTS) -o $@
+
+clean:
+ rm -f $(ALL)
+
+.PHONO: all clean
--- /dev/null
+1,/^$/ {
+ 1 i ---
+ /^$/ i ...
+ s/^\[\[.*meta \(.*\)="\(.*\)".*$/\1: \2/
+ /^title: / {
+ s/ -- /\\linebreak /
+ }
+}
+