Version Ref: 5.0 (not included in filePro Lite)
Syntax:
HTML:OL
HTML:UL
HTML:DL
HTML:DT
HTML:DD
HTML Function |
TAG |
Tag Code |
Tag Value |
Attr |
Value |
# of Values |
Ordered List |
<OL> |
:OL |
<none> |
:TY |
Type |
1 |
|
|
|
|
:ST |
Start |
1 |
|
|
|
|
:CO |
Compact |
1 |
|
|
|
|
|
|
1 |
Unordered List |
<UL> |
:UL |
<none> |
:TY |
Type |
1 |
|
|
|
|
:CO |
Compact |
1 |
|
|
|
|
|
|
|
Definition List |
<DL> |
:DL |
<none> |
:CO |
Compact |
1 |
|
|
|
|
|
|
|
Term |
<DT> |
:DT |
Optional |
<> |
|
|
|
|
|
|
|
|
|
Definition |
<DD> |
:DD |
Optional |
<> |
|
|
Description:
The :OL tag marks up an ordered list of items. Each item should be marked up with a :LI and it will be displayed with a number in front of it. The appearance of the number can be controlled with the :TY attribute:
1 |
Arabic numbers (default) (1, 2, 3, 4, ...) |
A |
Alphanumeric, lowercase (a, b, c, d, ...) |
A |
Alphanumeric, uppercase (A, B, C, D, ...) |
I |
Roman numbers, lowercase (i, ii, iii, iv, ...) |
I |
Roman numbers, uppercase (I, II, III, IV, ...) |
The :TY attribute is the type of bullet. You have three possible styles: "disc" for a closed bullet, "square" for an open square and "circle" for an open bullet.
The :ST attribute indicates where the list should start.
The :CO attribute indicates that the list contains only short list items, so it may be rendered in a more compact way.
Notes:
If you want a list with bullets rather than numbers, use :UL. The :UL tag indicates an unordered list. Every item in a list is marked with <LI> and usually appears with a bullet of some sort in front of it. If you need numbering, use :OL for an ordered list.