Skip to content

Commit

Permalink
Fix merging issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mity committed Jan 18, 2024
1 parent daf86fd commit f34c0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/md4c.c
Original file line number Diff line number Diff line change
Expand Up @@ -3090,7 +3090,7 @@ md_collect_marks(MD_CTX* ctx, const MD_LINE* lines, int n_lines, int table_mode)
if(is_code_span) {
PUSH_MARK(opener.ch, opener.beg, opener.end, opener.flags);
PUSH_MARK(closer.ch, closer.beg, closer.end, closer.flags);
md_resolve_range(ctx, NULL, ctx->n_marks-2, ctx->n_marks-1);
md_resolve_range(ctx, ctx->n_marks-2, ctx->n_marks-1);
off = closer.end;

/* Advance the current line accordingly. */
Expand Down

0 comments on commit f34c0cc

Please sign in to comment.