fletcher / peg-multimarkdown

An implementation of MultiMarkdown in C, using a PEG grammar - a fork of jgm's peg-markdown. No longer under active development - see MMD 5.
Other
523 stars 55 forks source link

changing list types is not noticed? #71

Closed tomheady closed 13 years ago

tomheady commented 13 years ago

This:

1. four 
1. five 
1. six 

* one 
* two   
* three 

becomes an ordered list with six items.

this:

* one 
* two   
* three 

1. four 
1. five 
1. six 

becomes an unordered list with six items.

this:

1. four 
1. five 
1. six 

some text in between

* one 
* two   
* three 

becomes two lists with 3 items each, the first ordered and the second unordered.

I would expect two lists with three items each in all three cases. Is my expectation incorrect, or is this a bug?

fletcher commented 13 years ago

This is consistent with Markdown behavior, though it is under discussion on the Markdown list