kzykhys / Ciconia

A New Markdown parser for PHP5.4
http://ciconia.kzykhys.com/
MIT License
355 stars 31 forks source link

Fix some issues with the list extension #46

Open gruberro opened 9 years ago

gruberro commented 9 years ago

This pull request improves the rendering of subsequent lists. It solves some issues highlighted in #30.

Rendering fixes

- item1
- item2
- item3

1. item1
2. item2
3. item3
- item1
- item2
- item3

* item1
* item2
* item3

Note: #30 mentions an issue when parsing this code:

- item1
- item2
- item3

test
1. item1
2. item2
3. item3

* item1
* item2
* item3

This PR does not change the rendering of this code, since it is not wrong. To make this example work as expected use the following markdown code:

- item1
- item2
- item3

test

1. item1
2. item2
3. item3

* item1
* item2
* item3