The next time you change your question to say the opposite from what it said before, a comment on existing answers that you're invalidating with your edit would be nice.
You now say
> As you can see, different layouts give the same results:
(as opposed to "same layouts give different results", which you claimed before and still do in a few places; see the first revision of this post for my answer to that).
This can hardly be considered a bug. After all, these four also give the same results:
Hello <em>World!</em>
Hello *World!*
Hello
*World!*
Hello <em>World!</em>
As for your specific example, the Markdown spec says
If list items are separated by blank lines, Markdown will wrap the items in <p> tags in the HTML output.
Quoting myself from this answer:
Besides the fact that this is actually ambigous (Which item is wrapped
in <p> tags? The one before the blank line? The one after it? Both?
All of them, once there's a blank line anywhere?) and that different
implementations actually handle this
differently,
here's how the original implementation [ed: and ours] does it:
The first element is wrapped in <p> if it's followed by a blank
line, the last element when it's preceded by a blank line, and all
other ones when there's a blank line at least on one side. All items
are wrapped if they contain blank lines.
In the five images you marked with a star (counting left-to-right, top-to-bottom), the following hold for the numbered (outer) list:
- Item 1 contains a blank line and is followed by a blank line; item 2 is preceded by a blank line.
- Item 1 is followed by a blank line; item 2 is preceded by a blank line.
- Item 1 is followed by a blank line; item 2 contains a blank line and is preceded by a blank line.
- Item 1 contains a blank line and is followed by a blank line; item 2 contains a blank line and is preceded by a blank line.
- Item 1 contains a blank line; item 2 contains a blank line.
So in all five examples, each item of the numbered list fulfills at least one condition to have its content wrapped in a paragraph. Thus it's absolutely correct that they give the same result.