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
TitleReferenceAuthorSource BranchDest Branch
configure-projects: default registry access to allowedrepos/releng/gitlab-settings!35brennenreview/brennen/revert-container-registrymain
Add analytics edit_hourly dagrepos/data-engineering/airflow-dags!237joaladd_analytics_edit_hourlymain
Fix exit code of `docker exec` command not being usedrepos/releng/cli!204ollieshottonexit-codesmain
Replace all references to gerrit with gitlabrepos/releng/blubber!3jhuneidiT307535master
gitlab-ci.yaml: add testsrepos/releng/blubber!2jhuneidiT307534master
Customize query in GitLab

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.