Page MenuHomePhabricator

numbered definition list
Closed, InvalidPublic

Description

Author: M.Schouten

Description:
I need a numbered definition list. Simply combining # and ;: like this:
#;item1 : def1
#;item2 : def2
does not work; only the first list number is printed. If I add a newline:
#;item1 : def1

#;item2 : def2
then I get two lists, each starting with a one.
I think these things should nest.


Version: unspecified
Severity: normal

Details

Reference
bz1075

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 8:01 PM
bzimport added a project: MediaWiki-Parser.
bzimport set Reference to bz1075.
bzimport added a subscriber: Unknown Object (MLST).

Numbered lists and definition lists are separate things in HTML.

You should be able to 'fake it' well enough like this:
#item1
#:def1
#item2
#:def2

That should nest in the way you expect.