From fce432fbc761ab2fa9d349239324d5cf68abf563 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 4 Jan 2015 09:01:53 -0800 Subject: xml writer - fixed issues with empty images. --- src/xml.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'src/xml.c') diff --git a/src/xml.c b/src/xml.c index b012886..1577f89 100644 --- a/src/xml.c +++ b/src/xml.c @@ -103,20 +103,16 @@ S_render_node(cmark_node *node, cmark_event_type ev_type, } else if (!literal) { cmark_strbuf_puts(xml, " /"); } + cmark_strbuf_puts(xml, ">\n"); - } else { - if (node->first_child) { + + } else if (node->first_child) { state->indent -= 2; - } - indent(state); - cmark_strbuf_printf(xml, "\n", + cmark_node_get_type_string(node)); } - // TODO print attributes - - cmark_strbuf_puts(xml, ">\n"); - return 1; } -- cgit v1.2.3