Markdown:
1. Item 1
1. Item 2
1. Item 3
1. Item 4
1. Item 5
Now outputted as:
- Item 1
Item 2
Item 3
- Item 4
- Item 5
The visual gap after item 3 appears to be an error. If I stick anything non-list between items 2 and 3 (say, <!-- . -->) the symptom disappears.
Also happens with a nested list:
1. Item 1
1. Item 2
- Sub Item
1. Item 3
...now showing as:
- Item 1
Item 2
- Sub Item
Item 3
The same when explicitly adding blank lines for readability, but only for sub lists that have a single item, not for sub lists that have multiple items. Note that, despite the additional blank lines, Markdown correctly sees this as a single list, and the browser correctly increases the numbered items for that:
1. Item 1
1. Sub Item 1a
1. Sub Item 1b
1. Item 2
- Sub Item 2a
1. Item 3
- Sub Item 3a
- Sub Item 3b
1. Item 4
Which now renders as:
Item 1
Sub Item 1a
Sub Item 1b
Item 2
- Sub Item 2a
Item 3
Sub Item 3a
Sub Item 3b
Item 4


- Sub Item 2ain the last example above is also surrounded by whitespace but not embedded in<p>s in the result...? (Instead:<ul> <li>Sub Item 2a</li> </ul>) – Arjan Apr 9 '12 at 12:41