Lists
Table of contents
Unordered
Makdown
+ To start a list, there should be an empty line above
+ Create a list by starting a line with `+`, `-`, or `*`
- Changing the sign will add a linespace
+ Add text under an item  
This is a text under an item. Notice that there are two spaces at the end above.
- Sub-lists are made by indenting 2 spaces:
  * Item 2a
  * Item 2b
* Item 3
To end a list, there should be one empty line above.
Rendered output
- To start a list, there should be an empty line above
- Create a list by starting a line with +,-, or*
- Changing the sign will add a linespace
- Add text under an item
 This is a text under an item. Notice that there are two spaces at the end above.
- Sub-lists are made by indenting 2 spaces: - Item 2a
- Item 2b
 
- Item 3
To end a list, there should be one empty line above.
Ordered
Makdown
1. Item 1
1. Item 2  
Notice that the sequence number is irrelevant. 
Markdown will change the sequence automatically when renderring. 
Notice that there are two spaces at the end above to make a new text under item.
3. Sub-lists are made by indenting 4 spaces
    1. Item 3a
    2. Item 3b
8. Any number for item 4
Rendered output
- Item 1
- Item 2
 Notice that the sequence number is irrelevant.
 Markdown will change the sequence automatically when renderring.
 Notice that there are two spaces at the end above to make a new text under item.
- Sub-lists are made by indenting 4 spaces - Item 3a
- Item 3b
 
- Any number for item 4
Makdown
57. will started with offset 57
1. so it will be 58
Rendered output
- will started with offset 57
- so it will be 58
Elements in Lists
Notes:
- To add another element in a list while preserving the continuity of the list, indent the element four spaces or one tab
Makdown
* This is the first list item.
* Here's the second list item.
    I need to add another paragraph below the second list item.
* And here's the third list item.
Rendered output
- This is the first list item.
- Here’s the second list item. I need to add another paragraph below the second list item.
- And here’s the third list item.
Rendered output
- This is the first list item.
-  Here’s the second list item. I need to add another paragraph below the second list item. 
- And here’s the third list item.
Rendered output
- This is the first list item.
-  Here’s the second list item. A blockquote would look great below the second list item. 
- And here’s the third list item.
Makdown
1.  This list will include image
2.  This is Irawan's logo
    
3.  So that's a logo
Rendered output
- This list will include image
- This is Irawan’s logo  
- So that’s a logo