blob: 132b1c292fdfa92f4466a93afb853cfef32318c5 (
plain)
- stem = devanagari
- all: $(stem).pdf
- $(stem).raw:
- pandoc -t markdown -o $@ 'http://lipsum.in/index.php/show/page/hindi.html'
- $(stem).md: $(stem).raw
- ./markdown-tidy $< $@
- $(stem).pdf: $(stem).md template.tex
- pandoc -f markdown --standalone --template=template.tex --latex-engine=xelatex -o $@ $<
|