Lists formatting:

Bullet lists:

Example Syntax Example Output
* a
** b
** c
*** d
  • a
    • b
    • c
      • d

Numbered lists:

Example Syntax Example Output
# a
## b
## c
### d
  1. a
    1. b
    2. c
      1. d

Definition lists:

Example Syntax Example Output
; defined term : definition
; defined term 2 : definition 2
defined term
definition
defined term 2
definition 2

Mixed lists:

Example Syntax Example Output
 * a
 *# b
 *# c
  • a
    1. b
    2. c

Lists inside tables:

Example Syntax Example Output
{| class="wikitable"
! Heading a
! Heading b
|-
|
* a1
* a2
|
|}
Column1 Heading Column2 Heading
  • r1c1
  • r1c2
  • r2c1
  • r2c2