Formatting Lists

Home

Formatting Lists

Unordered lists

<3 spaces>* adds a bullet item, like

  • First item
  • Second item
Ordered list

<3 spaces>1. adds an automatically numbered item, like

  1. First item
  2. Second item
Nesting and mixing lists

Lists can be nested by indenting each level with 3 spaces. Ordered and unordered lists can be mixed. E.g.

   * First level bullet
      * Second level bullet
         1. Third level numbered
      * Second level again
    * First level again
Generates

  • First level bullet
    • Second level bullet
      1. Third level numbered
    • Second level again
  • First level again