List

These markers can be used to define a list. The following list types are available: unordered list <ul> or ordered list <ol>. Similar to HTML, the markup list elements <li> are used for the elements of both lists. Unordered and ordered lists must be embedded in a Description, Summary or Example.

Example

Normal form:

(*!<description> The following is a list

<ul>

<li> Content of element 1 </li>

<li> List item </li>

<li> List item </li>

</ul>

</description>*)

Abbreviated form:

//!@description @ul <li> list item</li> <li> list item</li> <li> list item</li>