- Commit
- 951111c353c5eabe6c855f0a78362512d4d20d18
- Parent
- 5dba9e685d3491e55bd10a698adaf28bb4d44cd2
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Fixes one-off error in previous commit.
My personal build of CMark ✏️
Fixes one-off error in previous commit.
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 @@ -416,7 +416,7 @@ S_render_node(cmark_node *node, cmark_event_type ev_type, for (i = 0; i < numticks; i++) { lit(state, "`", false); } - if (code->len <= 1 || code->data[0] == '`') { + if (code->len == 0 || code->data[0] == '`') { lit(state, " ", false); } out(state, node->as.literal, true, LITERAL);