<list>

Description

An ordered or 'enumerated' list.

List elements contain <entry> elements.

Attributes

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.

Immediate descendants

Element name Description
<entry> An entry in the enumerated list.

Immediate ancestors

Element name Relation
<chapter> The enclosing chapter.

Example

<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.

  1. first
  2. second

Another list.

  1. third
  2. fourth