diff options
author | John MacFarlane <[email protected]> | 2014-12-12 23:00:51 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2014-12-12 23:20:36 -0800 |
commit | b598b52a4acdc2332be3d34e30237d1b93b7dd03 (patch) | |
tree | 090d34e6a07d1cf6753cb297dd3704a14403660b /src/html.c | |
parent | 45f8e0a6dbafee22b5e6f5c94eca01b92b0ba0aa (diff) |
Removed CMARK_NODE_REFERENCE_DEF from API.
There's no reason to store these empty nodes in the API.
The references have already been resolved.
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); |