diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-28 20:28:11 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-28 20:29:04 -0800 |
commit | 327be06f9e1741abb188bc1aa0df8a619972734b (patch) | |
tree | fa45972ef8a25fe5748bf31d56411bcf2374cc17 /src/cmark.h | |
parent | 010e64842352db62474f0c3a1d8a18207a547e14 (diff) |
Removed old 'ast' format, now that we have 'xml'.
The xml representation of the AST is not quite as pretty, but
it contains the same information and is not in an ad hoc format.
See #53.
Diffstat (limited to 'src/cmark.h')
-rw-r--r-- | src/cmark.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cmark.h b/src/cmark.h index 37b3efa..fe44a2d 100644 --- a/src/cmark.h +++ b/src/cmark.h @@ -400,12 +400,6 @@ cmark_node *cmark_parse_file(FILE *f); * ## Rendering */ -/** Render a 'node' tree for debugging purposes, showing - * the hierachy of nodes and their types and contents. - */ -CMARK_EXPORT -char *cmark_render_ast(cmark_node *root); - /** Render a 'node' tree as XML. */ CMARK_EXPORT |