Tag: [list]
The BBCode formatting allows you to create numbered and unnumbered lists.
Unnumbered lists correspond to an unordered set of items.
Example:
We will serve the following fruits at the picnic:
[list]
[*]Banana
[*]Apple
[*]Avocado
[/list]
Result:
We will serve the following fruits at the picnic:
To change the symbol in the list (instead of using a circle), simply use the syntax “list=” in the opening tag, entering the desired symbol. For example:
[list=circle][/list], [list=disc][/list], [list=square][/list].
To create numbered lists, simply inform which type of numbering is desired in the opening tag.
Note: numbered lists are usually used for ordered elements.
Example:
Follow the following steps to perform the registration:
[list=1]
[*]Click on the register menu
[*]Enter your e-mail address
[*]Create a password
[*]Click on complete registration
[/list]
Result:
Follow the following steps to complete the registration:
- Click on the register menu
- Enter your e-mail
- Create a password
- Click on complete registration
Besides the numbers 1, 2, 3, 4… you can use other numbers such as letters, Roman numerals, etc. For example:
[list=a][/list], [list=A][/list], [list=i][/list], [list=I][/list].
The above syntaxes would create the sequences: a, b, c…; A, B, C…; i, ii, iii…; I, II, III…