summaryrefslogtreecommitdiff
path: root/src/commonmark.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-03-29 20:40:07 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-03-29 20:40:07 -0700
commit5fcc575ee3a77da65cb63cd43eb4235c851ce6ad (patch)
treed5f58ac61632fbf96196778e3494068fd6fd0f57 /src/commonmark.c
parent07abc70323fe35f711a650b39472e0ac5af96185 (diff)
Don't wrap inline HTML.
Diffstat (limited to 'src/commonmark.c')
-rw-r--r--src/commonmark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commonmark.c b/src/commonmark.c
index 83a6602..9f093c3 100644
--- a/src/commonmark.c
+++ b/src/commonmark.c
@@ -455,7 +455,7 @@ S_render_node(cmark_node *node, cmark_event_type ev_type,
break;
case CMARK_NODE_INLINE_HTML:
- out(state, node->as.literal, true, LITERAL);
+ out(state, node->as.literal, false, LITERAL);
break;
case CMARK_NODE_STRONG: