From 11a29f6219ab9c72c0863e47ba386d7b3e1162d5 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 28 Dec 2015 16:05:42 -0800 Subject: Reformat sources. --- src/xml.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/xml.c') diff --git a/src/xml.c b/src/xml.c index df3e9a7..a06cdd3 100644 --- a/src/xml.c +++ b/src/xml.c @@ -105,10 +105,12 @@ static int S_render_node(cmark_node *node, cmark_event_type ev_type, case CMARK_NODE_CUSTOM_BLOCK: case CMARK_NODE_CUSTOM_INLINE: cmark_strbuf_puts(xml, " on_enter=\""); - escape_xml(xml, node->as.custom.on_enter.data, node->as.custom.on_enter.len); + escape_xml(xml, node->as.custom.on_enter.data, + node->as.custom.on_enter.len); cmark_strbuf_putc(xml, '"'); cmark_strbuf_puts(xml, " on_exit=\""); - escape_xml(xml, node->as.custom.on_exit.data, node->as.custom.on_exit.len); + escape_xml(xml, node->as.custom.on_exit.data, + node->as.custom.on_exit.len); cmark_strbuf_putc(xml, '"'); break; case CMARK_NODE_LINK: -- cgit v1.2.3