An ordered or 'enumerated' list.
List elements contain <entry> elements.
In addition to the following attributes, standard attributes may be defined on <list> elements.
Attribute name | Description |
---|---|
start | The start integer for the enumerated list. |
Element name | Description |
---|---|
<entry> | An entry in the enumerated list. |
Element name | Relation |
---|---|
<chapter> | The enclosing chapter. |
<document xmlns="http://boradoc.org/1.0"> <chapter> <para>A list.</para> <list> <entry>first</entry> <entry>second</entry> </list> <para>Another list.</para> <list start="3"> <entry>third</entry> <entry>fourth</entry> </list> </chapter> </document>
The above BDML renders to the following:
A list.
Another list.