Lists
Most lists can be rendered with pure Markdown.
Unordered list
- Item 1
- Item 2
- Item 3
or
- Item 1
- Item 2
- Item 3
- Item 1- Item 2- Item 3_or_* Item 1* Item 2* Item 3
Ordered list
- Item 1
- Item 2
- Item 3
1. Item 11. Item 21. Item 3
Task list
- hello, this is a todo item
- hello, this is another todo item
- goodbye, this item is done
- [ ] hello, this is a todo item- [ ] hello, this is another todo item- [x] goodbye, this item is done
Definition list
Definition lists require HTML syntax, as there isnt markdown syntax:
- Name
- Godzilla
- Born
- 1952
- Birthplace
- Japan
- Color
- Green
<dl><dt>Name</dt><dd>Godzilla</dd><dt>Born</dt><dd>1952</dd><dt>Birthplace</dt><dd>Japan</dd><dt>Color</dt><dd>Green</dd></dl>