summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2014-11-19 14:55:24 -0800
committerJohn MacFarlane <fiddlosopher@gmail.com>2014-11-19 14:55:24 -0800
commitae90bbe34fc24ffa5d8e2138bdfe46ddac2006be (patch)
tree4a11560d63bf0591c214fc26bbc9003cfc15c479 /src
parent8d10d5107880134c74a236f60f8babe595328078 (diff)
cmark: Add space before '/' in img tag.
Diffstat (limited to 'src')
-rw-r--r--src/html/html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/html.c b/src/html/html.c
index 8110f87..0c6c399 100644
--- a/src/html/html.c
+++ b/src/html/html.c
@@ -210,7 +210,7 @@ static void inlines_to_html(strbuf *html, cmark_node* ils)
escape_html(html, ils->as.link.title, -1);
}
- strbuf_puts(html, "\"/>");
+ strbuf_puts(html, "\" />");
break;
case NODE_STRONG: