I thought it was time for a user tutorial. I see a lot of people making lists (I am one of them) so I'm going to set out how to use the "List" and "List=" buttons.
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: Select all
[list]
[*]Red
[*]Blue
[*]Yellow[/list]
This would generate the following list:
- Red
- Blue
- Yellow
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: Select all
[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: Select all
[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
For more information see: http://www.phpbb.com/community/faq.php?mode=bbcode
