ipfc.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
ul.
                                                      Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
 <ul [compact]>
 
The ul tag starts an unordered list. An unordered list is a two-column list
that contains bullets in the left column and text in the right. In the help
source file, the unordered list must start with the ul tag, end with the
/ul tag, and contain one li tag for each item in the list.
 
Parameter  Description
────────────────────────────────────────────────────────────────────────────
 
compact    Removes blanks lines from between rows in the list. If this
           parameter is not specified, the list has one blank line between
           each row.
 
Comments
 
The bullet used with each item depends on the level of nesting of the list.
For lists that are not nested in another unordered list, each item has a
lowercase letter o. For the first level of nesting, each item has a hyphen.
Thereafter, the bullet alternates between a letter o and a hypen.
 
Example
 
This example uses the ul tag to start an unordered list:
 
    The program has the following features:
    <ul compact>
    <li>Easy to use
    <li>Powerful
    <li>Ready to customize
    </ul>
 
When displayed, the list looks like this:
 
    The program has the following features:
 
    o  Easy to use
    o  Powerful
    o  Ready to customize
 
See Also
 
 li, /ul
 
                                      ♦