diff options
author | John MacFarlane <[email protected]> | 2014-12-13 11:33:57 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-12-13 11:40:00 -0800 |
commit | a6a7d2f8f47df7144e636ae2875a8d2ffc0173ae (patch) | |
tree | d545fc608507a1210b8f3850515eed2448458ff3 /src/html.c | |
parent | 3bfbee921b34cf3ac4684344255a3d5b14171903 (diff) |
Remove CMARK_NODE_REFERENCE_DEF from API.
Modified finalize in blocks.c to return parent of finalized
block, so we can handle the case of reference definitions,
when we simply remove the finalized block.
Diffstat (limited to 'src/html.c')
-rw-r--r-- | src/html.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -163,9 +163,6 @@ 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); |