Markdown nested lists
Markdown also supports nested lists all we have to do is ident each level of items to make it a sublist under the main list:
- First item
- First subitem
- Second subitem
- First item
- First subitem
- Second subitem
We can also combine ordered and unordered lists like so:
1. First ordered item
- Unordered subitem
- Another unordered subitem
2. Second ordered item
- Unordered subitem
- Another unordered subitem
- First ordered item
- Unordered subitem
- Another unordered subitem
- Second ordered item
- Unordered subitem
- Another unordered subitem