summaryrefslogtreecommitdiff
path: root/src/html.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-19 20:50:37 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-19 20:50:37 -0800
commit774ac507fc7e86c6fe0d7b16a3c1abaed4849fab (patch)
tree99bef81a6487f16f100b10755e40000e7429dc5e /src/html.c
parenta8f26243b483f85f87f4f46b8c3b4734aa2113a4 (diff)
Rename RAW_BLOCK -> CUSTOM_BLOCK, RAW_INLINE -> CUSTOM_INLINE.
Diffstat (limited to 'src/html.c')
-rw-r--r--src/html.c4
1 files changed, 2 insertions, 2 deletions
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;