Generates HTML code for lists of all types.
AllClose Closes off all list levels.
CloseCurrent Closes the current list level to further entries.
Compact Renders the list in a compact format.
NOTE: The HTML compact attribute for lists is not interpreted by some browsers.
DL Creates a glossary list of paired items. The glossary list is a special case list interpreted as follows: list items with even-numbered indices (0, 2, 4, ...) are treated as glossary terms (DT); list items with odd-numbered indices (1, 3, 5, ...) are treated as definitions (DD).
NOTE: Glossary lists require that the list_item array have an even number of elements.
NOTE: The Compact keyword cannot be used with the Menu keyword; menu lists don't accept the compact attribute.
OL Creates an ordered list, where each item is ordered numerically or by ascending letters.
Safe Handles HTML special characters (see HTML_SAFE).
UL (The default list type.) Creates an unordered list, where each item is indicated by a special symbol. (Default: usually a bullet; however this is browser-dependent)
If you want to include a lower-level (sub) list, you must use the NoClose keyword in the top list level. When NoClose is used, one or more new lists can be nested under the current list level. Open lists are closed in a separate HTML_LIST procedure call, using either the CloseCurrent or the AllClose keywords.