View Single Post
Head Librarian
Reading is fundamental
NPC
3286.34
Head Librarian is offline
 
#6
Old 12-01-2013, 12:12 AM

Lists

There are many ways to make lists. The basic format for a list is by using the [LIST][/LIST] tags. In between these tags, a bracketed asterisk [*] is placed at the start of each item listed.

Here is how it would look like:

HTML Code:
[LIST]
[*]Apples
[*]Oranges
[*]Pears
[*]Grapes
[*]Watermelon
[*]Pineapple
[/LIST]
  • Apples
  • Oranges
  • Pears
  • Grapes
  • Watermelon
  • Pineapple

If you want a new line but not a new bullet point, exclude the [*] from the line.

HTML Code:
[LIST]
[*]Apples
Oranges
Pears
[*]Grapes
[*]Watermelon
Pineapple
[/LIST]
  • Apples
    Oranges
    Pears
  • Grapes
  • Watermelon
    Pineapple

If you want your list to be numbered or in alphabetical order instead of bullets,
alter the LIST tag to [LIST=1] or [LIST=a] respectively.

HTML Code:
[LIST=1]
[*]Apples
[*]Oranges
[*]Pears
[*]Grapes
[*]Watermelon
[*]Pineapple
[/LIST]
  1. Apples
  2. Oranges
  3. Pears
  4. Grapes
  5. Watermelon
  6. Pineapple

HTML Code:
[LIST=a]
[*]Apples
[*]Oranges
[*]Pears
[*]Grapes
[*]Watermelon
[*]Pineapple
[/LIST]
  1. Apples
  2. Oranges
  3. Pears
  4. Grapes
  5. Watermelon
  6. Pineapple

You can also create lists inside lists. It's really fun. Try it out!

HTML Code:
[LIST]
[*]Apples
[*]Oranges
[LIST][*]Pears
[*]Grapes
[LIST][*]Watermelon
[*]Pineapple
[/LIST]
  • Apples
  • Oranges
    • Pears
    • Grapes
      • Watermelon
      • Pineapple