Template:List style none

From Baldur's Gate 3 Wiki
Jump to navigation Jump to search
Template documentation

Use this to add the CSS style list-style: none; to a list, which disables the bullet points.

This is useful for lists where each element already begins with some sort of icon, so the bullet points are visually unappealing.

For example, consider the following listing of some common actions:

* {{SAI|Dash}}: Gotta go fast
* {{SAI|Throw}}: Eat a rock
* {{SAI|Jump}}: I'm a kangaroo

It's normally rendered as such:

The bullets are ugly, so you can do this instead:

{{list style none|
* {{SAI|Dash}}: Gotta go fast
* {{SAI|Jump}}: I'm a kangaroo
}}

Which is rendered as follows:

  • Dash Dash: Gotta go fast
  • Jump Jump: I'm a kangaroo