vB5 Manual and API Documentation
Forums API Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Creating Lists

Lists allow you to create bulleted points for your topic.

Bulleted Lists
The [list] tag allows you to create simple, bulleted lists without specifying an option. Within the value portion, each bullet is denoted by the [*] tag.
Usage: [list][*]item,[*]item, ...[/list]
Example Usage: [list]
[*]list item 1
[*]list item 2
[/list]
Example Output:
  • list item 1
  • list item 2
Advanced Lists
The [list] tag allows you to create advanced lists by specifying an option. The option should have a value of 1 (for a numbered list) or A (for an alphabetic with capital letters list) or a (for an alphabetic with lowercase letters list) or I (for a numbered with capital Roman numeral list) or i (for a numbered with small Roman numeral list).
Usage: [list=option][*]item, [*]item, ...[/list]
Example Usage: [list=1]
[*]list item 1
[*]list item 2
[/list]

[list=A]
[*]list item 1
[*]list item 2
[/list]

[list=a]
[*]list item 1
[*]list item 2
[/list]
Example Output:
  1. list item 1
  2. list item 2
  1. list item 1
  2. list item 2
  1. list item 1
  2. list item 2

updated: 2021-10-06 01:30pm | Version: 5.6.5 Alpha 11