diff options
author | John MacFarlane <[email protected]> | 2016-01-08 12:58:24 -0800 |
---|---|---|
committer | John MacFarlane <[email protected]> | 2016-01-08 12:58:24 -0800 |
commit | a389902278feefde988935353acb1a52d978df9b (patch) | |
tree | e44fe38ec689bf284b97b158124ef5b1925fec12 /src | |
parent | d30371d6871981f369eafb30fb1a7e82df7139eb (diff) |
Fixed string representations of CUSTOM_BLOCK, CUSTOM_INLINE.
The old versions raw_inline and raw_block were being used,
and this led to incorrect xml output.
Diffstat (limited to 'src')
-rw-r--r-- | src/node.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -171,7 +171,7 @@ const char *cmark_node_get_type_string(cmark_node *node) { case CMARK_NODE_HTML_BLOCK: return "html_block"; case CMARK_NODE_CUSTOM_BLOCK: - return "raw_block"; + return "custom_block"; case CMARK_NODE_PARAGRAPH: return "paragraph"; case CMARK_NODE_HEADING: @@ -189,7 +189,7 @@ const char *cmark_node_get_type_string(cmark_node *node) { case CMARK_NODE_HTML_INLINE: return "html_inline"; case CMARK_NODE_CUSTOM_INLINE: - return "raw_inline"; + return "custom_inline"; case CMARK_NODE_EMPH: return "emph"; case CMARK_NODE_STRONG: |