sirthias / pegdown

A pure-Java Markdown processor based on a parboiled PEG parser supporting a number of extensions
http://pegdown.org
Apache License 2.0
1.29k stars 218 forks source link

Two or more blank lines between list items would break the list into separate lists #190

Closed vsch closed 8 years ago

vsch commented 9 years ago
1. test
2. test

3. test

results in:

1. test
2. test

1. test

instead 1, 2, 3 as expected.

Fixed with tests. PR coming.