diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-12-19 20:50:37 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-12-19 20:50:37 -0800 |
commit | 774ac507fc7e86c6fe0d7b16a3c1abaed4849fab (patch) | |
tree | 99bef81a6487f16f100b10755e40000e7429dc5e /src/node.c | |
parent | a8f26243b483f85f87f4f46b8c3b4734aa2113a4 (diff) |
Rename RAW_BLOCK -> CUSTOM_BLOCK, RAW_INLINE -> CUSTOM_INLINE.
Diffstat (limited to 'src/node.c')
-rw-r--r-- | src/node.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -161,7 +161,7 @@ const char *cmark_node_get_type_string(cmark_node *node) { return "code_block"; case CMARK_NODE_HTML: return "html"; - case CMARK_NODE_RAW_BLOCK: + case CMARK_NODE_CUSTOM_BLOCK: return "raw_block"; case CMARK_NODE_PARAGRAPH: return "paragraph"; @@ -179,7 +179,7 @@ const char *cmark_node_get_type_string(cmark_node *node) { return "code"; case CMARK_NODE_INLINE_HTML: return "inline_html"; - case CMARK_NODE_RAW_INLINE: + case CMARK_NODE_CUSTOM_INLINE: return "raw_inline"; case CMARK_NODE_EMPH: return "emph"; |