Closed GoogleCodeExporter closed 9 years ago
Try changing
PANDOC := pandoc --no-wrap -sS
to
PANDOC := pandoc --no-wrap -sS -f markdown+lhs
Since you are sending the file to pandoc through stdin, it has no way of
knowing that it is a markdown+lhs file, and is interpreting the > sections as
standard markdown block quotes.
Or, supply the file name to pandoc:
pandoc minimal.lhs -t latex -s > minimal.tex
works just fine, because now pandoc knows from the filename that it's lhs.
Reply here if this helps.
Original comment by fiddloso...@gmail.com
on 31 Jan 2011 at 7:16
Thank you,
very enlightening, this completely solves the issue I had!
Original comment by d.kahlen...@gmail.com
on 1 Feb 2011 at 8:25
Great. Closing.
Original comment by fiddloso...@gmail.com
on 1 Feb 2011 at 3:34
Original issue reported on code.google.com by
d.kahlen...@gmail.com
on 31 Jan 2011 at 6:02Attachments: