Two buttons available when posting are the "list" and "list =" buttons.
The following is a rundown on how they are used.
Generating lists
Creating an Unordered list BBCode supports two types of lists, unordered and ordered. They are essentially the same as their HTML equivalents. An unordered list outputs each item in your list sequentially one after the other indenting each with a bullet character. To create an unordered list you use Code:
[list][/list]
and define each item within the list using [*]. For example to list your favourite colours you could use:
Code:
[list]
[*]Red
[*]Blue
[*]Yellow
[/list]
This would generate the following list:
Creating an Ordered list The second type of list, an ordered list, gives you control over what is output before each item. To create an ordered list you use Code:
[list=1][/list]
to create a numbered list or alternatively Code:
[list=a][/list]
for an alphabetical list. As with the unordered list, items are specified using [*]. For example:
Code:
[list=1]
[*]Go to the shops
[*]Buy a new computer
[*]Swear at computer when it crashes
[/list]
will generate the following:
- Go to the shops
- Buy a new computer
- Swear at computer when it crashes
Whereas for an alphabetical list you would use:
Code:
[list=a]
[*]The first possible answer
[*]The second possible answer
[*]The third possible answer
[/list]
giving
- The first possible answer
- The second possible answer
- The third possible answer
Btw, simply using Code:
[list]Your text[/list]
without the [*] will indent your text without bullets like so...
Code:
My favorite colors are
[list]
Blue
Red
Green
Gold
[/list]
will get you...
My favorite colors are