Whole document tree
    

Whole document tree

ItemizedList

ItemizedList

Name

ItemizedList -- List in which each entry is marked with a bullet, dash, or other dingbat

Content Model

  ListItem+

Tag Minimization

Both the start- and end-tags are required for this element.

Description

List in which each item is marked with a bullet, dash, or other dingbat (or no mark at all). It consists of one or more ListItems. A ListItem in an ItemizedList contains paragraphs and other block-oriented elements, which may in turn contain other lists; an ItemizedList may be nested within other lists, too. It has common attributes and a Mark attribute. Your application might supply the mark to be used for an ItemizedList, but you can use a keyword as the value of this attribute to indicate the mark you desire to be used; there is no fixed list of these.

Children

ItemizedList contains ListItem.

In some contexts, additional elements may be allowed by inclusions in parent elements. Similarly, in some contexts, some of these elements may be invalid due to exclusions in parent elements.

Attributes

Spacing

Spacing indicates whether the vertical space in the list should be compressed.

Mark

Mark holds a keyword indicating the mark to be prepended to the ListItems of an ItemizedList. There is no fixed list of these.

Examples

<ITEMIZEDLIST MARK="bullet" SPACING="compact">
<LISTITEM>
<PARA>This ItemizedList contains two short ListItems.
</PARA>
<PARA>For that reason, the Spacing attribute has been set to 
indicate that vertical spacing should be decreased from the default.
</PARA>
</LISTITEM>
<LISTITEM>
<PARA>The Mark attribute indicates that the ListItems should be
preceded by bullets.
</PARA>
<ITEMIZEDLIST MARK="dash">
<LISTITEM>
<PARA>This is an ItemizedList nested within the outer ItemizedList.
</PARA>
</LISTITEM>
<LISTITEM>
<PARA>Instead of using the two attributes shown, solve these
issues in your style sheet.
</PARA>
</LISTITEM>
</ITEMIZEDLIST>
</LISTITEM>
</ITEMIZEDLIST>