diff options
author | John MacFarlane <[email protected]> | 2014-12-12 23:49:52 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-12-12 23:49:52 -0800 |
commit | 831bf6de49ae58bd3630f40bdb6f8bc5371a33dd (patch) | |
tree | 5878846380b43f3116c9ddc0afc4d645486549cd /src/html.c | |
parent | 3d0110a36054a9af1532d52f2671360fa1c802a3 (diff) |
Revert "Removed CMARK_NODE_REFERENCE_DEF from API."
This reverts commit b598b52a4acdc2332be3d34e30237d1b93b7dd03.
The change led to some problems, because some of the callers
of 'finalize' expected the node to exist after the call.
This could all be rewritten, but for now let's just revert.
Diffstat (limited to 'src/html.c')
-rw-r--r-- | src/html.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -163,6 +163,9 @@ S_render_node(cmark_node *node, int entering, void *vstate) strbuf_puts(html, "<hr />\n"); break; + case CMARK_NODE_REFERENCE_DEF: + break; + case CMARK_NODE_PARAGRAPH: parent = cmark_node_parent(node); grandparent = cmark_node_parent(parent); |