Navigation
Synopsis A (possible nested) list of bullet points.
Syntax
  1. * MarkedText
  2. ** MarkedText
  3. *** MarkedText
  4. ...
Description BulletLists create, possibly nested, lists of points. The number of * characters determines the nesting level of a (sub)list.

A list item ends with:
  • the start of a new list item.
  • to consecutive empty lines.
BulletLists and NumberedLists can be mixed.
Examples The input


* First item.
* Second item.

will produce:
  • First item.
  • Second item.
The input


* First item.
** First subitem.
** Second subitem.
* Second item

will produce:
  • First item.
    • First subitem.
    • Second subitem.
  • Second item
Pitfalls Do not forget to add two newlines after a BulletList, otherwise the new paragraph becomes part of the last list item.
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.