summaryrefslogtreecommitdiff
path: root/src/html.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-12 23:00:51 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-12 23:20:36 -0800
commitb598b52a4acdc2332be3d34e30237d1b93b7dd03 (patch)
tree090d34e6a07d1cf6753cb297dd3704a14403660b /src/html.c
parent45f8e0a6dbafee22b5e6f5c94eca01b92b0ba0aa (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.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/html.c b/src/html.c
index e6ae63e..12d4659 100644
--- a/src/html.c
+++ b/src/html.c
@@ -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);