Skip to content

Commit

Permalink
Merge vmg#162 of the original project
Browse files Browse the repository at this point in the history
  • Loading branch information
dokutoku committed Mar 11, 2023
2 parents 6fd5f76 + 04b823c commit c914553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.c
Original file line number Diff line number Diff line change
Expand Up @@ -2011,7 +2011,7 @@ parse_table_row(

cell_start = i;

while (i < size && data[i] != '|')
while (i < size && ((data[i] != '|') || ((i > 0) && (data[i-1] == '\\'))))
i++;

cell_end = i - 1;
Expand Down

0 comments on commit c914553

Please sign in to comment.