diff options
Diffstat (limited to 'src/cmark.h')
-rw-r--r-- | src/cmark.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cmark.h b/src/cmark.h index 192290c..6618301 100644 --- a/src/cmark.h +++ b/src/cmark.h @@ -486,6 +486,11 @@ char *cmark_render_man(cmark_node *root, int options); CMARK_EXPORT char *cmark_render_commonmark(cmark_node *root, int options, int width); +/** Render a 'node' tree as a LaTeX document. + */ +CMARK_EXPORT +char *cmark_render_latex(cmark_node *root, int options, int width); + /** Default writer options. */ #define CMARK_OPT_DEFAULT 0 |