OL (Ordered List)

My favourite things: (ordered list example)
  1. Chocolate
  2. More Chocolate
  3. Chicken
  4. Cheese puffs
  5. Checkers
If you look at the source code ([Ctrl] [U] in firefox) you will see how simple it is.

Code to make the list:

<ol>

    <li>1. Chocolate
    <li>2. More Chocolate
    <li>3. Chicken
    <li>4. Cheese puffs
    <li>5. Checkers
</ol>

You do NOT need to put the numbers in! This is the point of an ordered list. They will appear magically.

Parameters: type=a or type=i (default type=1)
value=n (where the value assigned is the start point)