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 /README.md | |
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 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ rationalized version of Markdown syntax with a [spec][the spec]. It provides a shared library (`libcmark`) with functions for parsing CommonMark documents to an abstract syntax tree (AST), manipulating -the AST, and rendering the document to HTML, groff man, +the AST, and rendering the document to HTML, groff man, LaTeX, CommonMark, or an XML representation of the AST. It also provides a command-line program (`cmark`) for parsing and rendering CommonMark documents. @@ -43,7 +43,7 @@ Advantages of this library: - **Flexible.** CommonMark input is parsed to an AST which can be manipulated programatically prior to rendering. -- **Multiple renderers.** Output in HTML, groff man, CommonMark, +- **Multiple renderers.** Output in HTML, groff man, LaTeX, CommonMark, and a custom XML format is supported. And it is easy to write new renderers to support other formats. |