summaryrefslogtreecommitdiff
path: root/src/xml.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-19 15:26:18 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-19 15:26:18 -0800
commit00ae2c61a47e09bb7643f0a7153c2009b7537e09 (patch)
treeb5d07e1ad0d9950012951b6c69013a63722ff192 /src/xml.c
parent70545251f4d1685a600e8eeb7b78eea430613b94 (diff)
Added RAW_BLOCK and RAW_INLINE node types.
These are passed through verbatim by all writers, with no escaping. They are never generated by the parser, and do not correspond to CommonMark elements. They are designed to be inserted by filters that postprocess the AST. For example, a filter might convert specially marked code blocks to svg diagrams in HTML and tikz diagrams in LaTeX, passing these through to the renderer as a RAW_BLOCK.
Diffstat (limited to 'src/xml.c')
-rw-r--r--src/xml.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xml.c b/src/xml.c
index 4885d0a..2b7e645 100644
--- a/src/xml.c
+++ b/src/xml.c
@@ -53,7 +53,9 @@ static int S_render_node(cmark_node *node, cmark_event_type ev_type,
case CMARK_NODE_TEXT:
case CMARK_NODE_CODE:
case CMARK_NODE_HTML:
+ case CMARK_NODE_RAW_BLOCK:
case CMARK_NODE_INLINE_HTML:
+ case CMARK_NODE_RAW_INLINE:
cmark_strbuf_puts(xml, ">");
escape_xml(xml, node->as.literal.data, node->as.literal.len);
cmark_strbuf_puts(xml, "</");