It is currently April 19th, 2024, 10:52 am

Using the [List=] BBCode

Discussions about the documentation, main Rainmeter site and forums.
User avatar
jsmorley
Developer
Posts: 22629
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Using the [List=] BBCode

Post by jsmorley »

The "List=" BBCode can be a nice way to create an ordered and formatted list of items or points in a post. It is not intuitive how to properly use it, so I thought I would give some examples.

You create a list by specifying "
  • ", then the items you want, one on each line, with "
  • " before each of them. You end the list with "
".

The different "TypeOfList" values allowed are:

1 - Numbers from 1 to however many items you have
A - Alphabetical indicators from A to Z
Disc - Solid circles
Circle - Transparent circles
Square - Solid squares

Code: Select all

[List=Disc]
[*]Item One
[*]Item Two
[*]Item Three
[*]Item Four
[*]Item Five
[/list]
  • Item One
  • Item Two
  • Item Three
  • Item Four
  • Item Five

Code: Select all

[List=A]
[*]Item One
[*]Item Two
[*]Item Three
[*]Item Four
[*]Item Five
[/list]
  1. Item One
  2. Item Two
  3. Item Three
  4. Item Four
  5. Item Five