SMF software handles ordered lists differently from other forum software programs. Following are examples of how the code works.
Note: The no BBCode tag shows the code used. Without spaces: [ nobbc ] [ /nobbc ]
The numerous list types include:
list type=decimal
list type=decimal-leading-zero
list type=upper-alpha
list type=lower-alpha
list type=upper-roman
list type=lower-roman
list type=disc
list type=circle
list type=square
list type=lower-greek
list type=lower-latin
list type=upper-latin
Where other forum software uses the asterisk enclosed in brackets [*] identifying new lines in a list, SMF lines are preceded with [li] and ended with [/li].
decimal (numbers 1, 2, 3)
[list type=decimal]
[li] Line in List [/li]
[li] Another line in a List[/li]
[li] Last Line in a List[/li]
[/list]
Sample:
- Line in List
- Another line in a List
- Last Line in a List
Upper Alpha [list type=upper-alpha]
[li] Line in List [/li]
[li] Another line in a List[/li]
[li] Last Line in a List[/li]
[/list]
Sample:
- Line in List
- Another line in a List
- Last Line in a List
Lower Alpha [list type=lower-alpha]
[li] Line in List [/li]
[li] Another line in a List[/li]
[li] Last Line in a List[/li]
[/list]
Sample:
- Line in List
- Another line in a List
- Last Line in a List
Upper Roman [list type=upper-roman]
[li] Line in List [/li]
[li] Another line in a List[/li]
[li] Last Line in a List[/li]
[/list]
Sample:
- Line in List
- Another line in a List
- Last Line in a List
Lower Roman [list type=lower-roman]
[li] Line in List [/li]
[li] Another line in a List[/li]
[li] Last Line in a List[/li]
[/list]
Sample:
- Line in List
- Another line in a List
- Last Line in a List