The following attributes are supported:
For instance:
- TYPE=x:
- This attribute defines how the list will be ordered. Values for x control the numbering of the list. x may be one of:
- A Capital letters
- a Lower case letters
- I Capital roman numerals
- i Lower case roman numerals
- 1 Numbers
- START=n:
- This attribute represents the base vale from which to start the numbering, and is always a number
- COMPACT:
- This suggests that a compact rendering should be used to display the list
<OL TYPE=I START=5>would be displayed as:
<LI>First Item
<LI>Second Item
</OL>
- First Item
- Second Item