Lists#
Markdown supports unordered lists, ordered lists, and nested lists. Nested items must be preceded by 4 spaces.
Ordered List#
To create an ordered list, add line items with numbers followed by periods. The numbers don’t have to be in numerical order, but the list should start with the number one.
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
Markdown#
1. First item
1. Second item
1. Third item
1. Indented item
1. Indented item
1. Fourth item
Unordered List#
To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items.
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
Markdown#
* First item
* Second item
* Third item
* Indented item
* Indented item
* Fourth item
Credit#
Examples and instructional text in this document were adapted from the basic syntax markdown guide on markdownguide.org.