GNOME Bugzilla – Bug 671710
First item in bulleted lists being closed with <ul> instead of </li>
Last modified: 2012-03-17 15:53:38 UTC
The following markup... /// All items in the following list should be at the same indent level: /// /// - Item 1 /// - Item 2 /// - Item 3 ...incorrectly yields the following HTML... <ul> <li>Item 1<ul> <li>Item 2</li> <li>Item 3</li> </ul> ...where the first item is closed with a <ul> instead of a </li>. This incorrect behaviour is the same regardless of whether '-', '+', or '*' is used as the "bullet" character.
Created attachment 209309 [details] Test case
*** This bug has been marked as a duplicate of bug 671023 ***