Last modified: 2014-11-17 10:35:45 UTC
The following wikisource doesn't seem to be processed correctly, generating an open DL without the corresponding close DL. The list items should be indented to the same level, but aren't. * list, first item :{| |- {| |- | an embedded table || with one row |} |} * another item
Workaround: enclose it into <div>s
Bulleted lists are not required to demonstrate the bug, although it does seem to occur most often in practice when trying to include a table between bulleted list items with appropriate indentation. Presence or absence of a blank line after the table also has no effect. The following markup is sufficient to reproduce the bug: :{| | {| | This is indented and wrapped in two tables. |} |} This should be normal, unindented text.
The problem is, that the indent_level is overriden by the inner table with 0 and so the dl/dd for the outer table is not closing. The wikitext: * list, first item ::{| |- :{| |- | an embedded table || with one row |} |} * another item only close the one indent for the inner table and only one of the outer indent, because the inner table has one indent, and that overrides the count of outer indent.
*** Bug 38162 has been marked as a duplicate of this bug. ***