diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-07-03 22:12:49 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2015-07-05 16:11:36 -0700 |
commit | afc1b89ac71b642a841c8b79ea0ec6b70d2adae5 (patch) | |
tree | 4ef3e3080d2d38ca8514a6e3055c4817163b3012 /Makefile | |
parent | 46e9ed6e0c118dc6b6a4a4833d6c960701849fdb (diff) |
Added LaTeX renderer.
* New exported function in API: `cmark_render_latex`.
* Added src/latex.hs.
* Updated README and man page.
* Closes #31.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ $(ALLTESTS): $(SPEC) leakcheck: $(ALLTESTS) rc=0; \ - for format in html man xml commonmark; do \ + for format in html man xml latex commonmark; do \ for opts in "" "--smart" "--normalize"; do \ echo "cmark -t $$format $$opts" ; \ cat $< | valgrind -q --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) -t $$format $$opts >/dev/null || rc=1; \ |