The correct way to use that 'list' tag is by encapsulating the star tags between the two 'list' '/list'.
Thus there is only one 'list' at the beginning, and only one '/list' at the end.
And between the two you put as many stars as you like, each star constituting a new entry in the list
Example, you used this syntax:
Code: Select all
[list]test1[/list]
[list]test2[/list]
[list]test3[/list]
Which gives this result:
This creates 3 independent lists, each having only one entry.
Â
The correct syntax is instead:
Code: Select all
[list][*]test1
[*]test2
[*]test3[/list]
Which gives one list having three entries :
The same with a numbered list, and a bit of bold to highlight the entries titles :
Code: Select all
[list=1][*][b]test1[/b]
Second line of Test 1
Â
[*][b]test2[/b]
Second line of test 2
Third line of test 2
Â
[*][b]test3[/b]
blablabla
etc.[/list]
Result:
- test1
Second line of Test 1
Â
- test2
Second line of test 2
Third line of test 2
Â
- test3
blablabla
etc.
Â
Â
Of course you can embed lists into lists
Code: Select all
[list=A][*][b]Apple[/b][list=a][*][color=#FF0040]aaaaa[/color][list=1][*][color=#8000FF]zzzzz[*]yyyyy[*]xxxxx[/color][/list][*][color=#FF0040]bbbbb[/color][list=1][*][color=#8000FF]wwwww[*]vvvvv[*]uuuuu[/color][/list][/list][*][b]Banana[/b][list=a][*][color=#FF0040]ccccc[/color][list=1][*][color=#8000FF]ttttt[*]sssss[*]rrrrr[/color][/list][*][color=#FF0040]ddddd[/color][list=1][*][color=#8000FF]qqqqq[*]ppppp[*]ooooo[/color][/list][/list][*][b]Cherry[/b][list=a][*][color=#FF0040]eeeee[/color][list=1][*][color=#8000FF]nnnnn[*]mmmmm[*]lllll[/color][/list][*][color=#FF0040]fffff[/color][list=1][*][color=#8000FF]kkkkk[*]jjjjj[*]iiiii[/color][/list][/list][/list]
- Apple
- aaaaa
- zzzzz
- yyyyy
- xxxxx
- bbbbb
- wwwww
- vvvvv
- uuuuu
- Banana
- ccccc
- ttttt
- sssss
- rrrrr
- ddddd
- qqqqq
- ppppp
- ooooo
- Cherry
- eeeee
- nnnnn
- mmmmm
- lllll
- fffff
- kkkkk
- jjjjj
- iiiii