Nesting Lists
You can nest an ordered (numbered) list within an unordered (bulleted) list. You can use a special form of the ordered list to simulate two nested unordered lists:
The code:
[list]
[*]this
[*]that
[list=square]
[*]the
[*]other
[*]thing
[/list]
[*]OK!
[/list]
Produces the result:
- this
- that
- the
- other
- thing
- OK!