From 774ac507fc7e86c6fe0d7b16a3c1abaed4849fab Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 19 Dec 2015 20:50:37 -0800 Subject: Rename RAW_BLOCK -> CUSTOM_BLOCK, RAW_INLINE -> CUSTOM_INLINE. --- src/html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/html.c') diff --git a/src/html.c b/src/html.c index 4fa4437..0e4f69f 100644 --- a/src/html.c +++ b/src/html.c @@ -176,7 +176,7 @@ static int S_render_node(cmark_node *node, cmark_event_type ev_type, cr(html); break; - case CMARK_NODE_RAW_BLOCK: + case CMARK_NODE_CUSTOM_BLOCK: cr(html); cmark_strbuf_put(html, node->as.literal.data, node->as.literal.len); cr(html); @@ -239,7 +239,7 @@ static int S_render_node(cmark_node *node, cmark_event_type ev_type, } break; - case CMARK_NODE_RAW_INLINE: + case CMARK_NODE_CUSTOM_INLINE: cmark_strbuf_put(html, node->as.literal.data, node->as.literal.len); break; -- cgit v1.2.3