- Commit
- 5fcc575ee3a77da65cb63cd43eb4235c851ce6ad
- Parent
- 07abc70323fe35f711a650b39472e0ac5af96185
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Don't wrap inline HTML.
My personal build of CMark ✏️
Don't wrap inline HTML.
1 file changed, 1 insertion, 1 deletion
Status | File Name | N° Changes | Insertions | Deletions |
Modified | src/commonmark.c | 2 | 1 | 1 |
diff --git 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: