Skip to content

Commit

Permalink
Use CMARK_NO_DELIM for bullet lists. Closes #201.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed May 30, 2017
1 parent ff1d54e commit 58b37ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blocks.c
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ static bufsize_t parse_list_marker(cmark_mem *mem, cmark_chunk *input,
data->list_type = CMARK_BULLET_LIST;
data->bullet_char = c;
data->start = 1;
data->delimiter = CMARK_PERIOD_DELIM;
data->delimiter = CMARK_NO_DELIM;
data->tight = false;
} else if (cmark_isdigit(c)) {
int start = 0;
Expand Down

0 comments on commit 58b37ae

Please sign in to comment.