Page 1 of 1

list testing

Posted: Wed Aug 06, 2008 7:51 pm
by goglio704
  • item a
  • item a.1
  • item b
  • item a
  • item a.1
  • item b

Posted: Wed Aug 06, 2008 9:06 pm
by asavage
bbCode FAQ, "lists" section

Unordered list
  • First
  • Second
  • Third
Numbered list
  1. First
  2. Second
  3. Third
Alpha list
  1. First
  2. Second
  3. Third

Code: Select all

[b]Unordered list[/b][list][*]First   [*]Second   [*]Third[/list]

[b]Numbered list[/b][list=1][*]First  [*]Second  [*]Third[/list]

[b]Alpha list[/b][list=a][*]First  [*]Second  [*]Third [/list]

Posted: Thu Aug 07, 2008 6:32 am
by goglio704
Something the BB code FAQ doesn't show is how to subdivide list items. In other words, lists within lists. A good example of this is found in the LD FAQ. I have looked in there for sample code, but there is so much code in there that it takes time to sort out. It can be done though. I figured out the basics of lists that way because, at the time, I couldn't find a link to the BB code FAQ. Is there a link to that area outside of the message composition window?

Posted: Thu Aug 07, 2008 6:42 am
by asavage
  1. First
  2. Second
  3. Third
    1. 3.1
    2. 3.2
    3. 3.3
  4. Fourth

Code: Select all

[list=1][*]First   [*]Second   [*]Third   [list=a][*]3.1   [*]3.2   [*]3.3 [/list]  [*]Fourth  [/list]

AFAIK, the only link to bbCode help is on the composition page.

Posted: Thu Aug 07, 2008 7:18 pm
by goglio704
Thanks.