summaryrefslogtreecommitdiff
path: root/Makefile
blob: 132b1c292fdfa92f4466a93afb853cfef32318c5 (plain)
  1. stem = devanagari
  2. all: $(stem).pdf
  3. $(stem).raw:
  4. pandoc -t markdown -o $@ 'http://lipsum.in/index.php/show/page/hindi.html'
  5. $(stem).md: $(stem).raw
  6. ./markdown-tidy $< $@
  7. $(stem).pdf: $(stem).md template.tex
  8. pandoc -f markdown --standalone --template=template.tex --latex-engine=xelatex -o $@ $<