Entries in unordered or enumerated lists.
List entry elements may act directly as paragraphs, where text is entered directly, or may act as a pseudo-section, containing any elements specified for the <section> element.
No attributes other than standard attributes are defined for <entry> elements in lists.
List <entry> elements may also contain text directly.
Element name | Description |
---|---|
<bullets> | An unordered or 'bullet' list. |
<emph> | A emphasized span of text within a paragraph. |
<graphic> | An inline graphic within the paragraph text. |
<h1> | A level 1 heading |
<h2> | A level 2 heading |
<h3> | A level 3 heading |
<h4> | A level 4 heading |
<h5> | A level 5 heading |
<list> | An enumerated list. |
<para> | A paragraph of text. |
<span> | A span of text within a paragraph. |
<strong> | A strongly highlighted span of text within a paragraph. |
<sub> | A subscript span of text within a paragraph. |
<sup> | A superscript span of text within a paragraph. |
<table> | A matrix of cells for tabular data representation. |
<comment> | A comment entry for developer discussions. This element is normally not printed other than in developer HTML translation or direct browser loading. |
Element name | Relation |
---|---|
list | The enclosing list element. |
<document xmlns="http://boradoc.org/1.0"> <chapter> <para>An example bullet list.</para> <bullets> <entry>an entry</entry> <entry>another entry</entry> </bullets> <para>An example enumerated list.</para> <list> <entry>first entry</entry> <entry>second entry</entry> </list> </chapter> </document>
The above BDML renders to the following:
An example bullet list.
An example enumerated list.