Say I'm entering a list, like so:
* Item 1
* SubItem 1a
* SubItem 1b
* Item 2
* SubItem 2a
* SubItem 2b
As you'd expect, this results in:
- Item 1
- SubItem 1a
- SubItem 1b
- Item 2
- SubItem 2a
- SubItem 2b
But, if I add an extra line before * Item 2 in the source (to add spacing to the list and try to make it less crowded and so hopefully more readable), then it looks like this:
Item 1
- SubItem 1a
- SubItem 1b
Item 2
- SubItem 2a
- SubItem 2b
(Here's a screenshot for reference, but essentially the child elements are aligned down with a gap between them and their parent entry)
A quick glance at Firebug seems to show that the Item 2 text is wrapped in <p> tags, which imposes a 1em bottom margin, but there is no <p> wrapper present in the non-spaced version.
I like to try and space my lists out to make them more pleasant, so I've noticed that this issue has been around for a while, but I wonder if we could either have this fixed (so that child items are aligned up to their parent and the gap remains) or maybe just remove the additional spacing entirely (at least avoiding the abnormally spaced lists)?
