Markdown
Here are the key concepts of Markdown notation. See this commonmark.org tutorial for details:
- italic & bold
1*italice* 2**bold**
- heading
1# H1 2## H2 3...
- link
1[this link](www.url.com)
- image
1![this image tag](image-url.com)
- blockquote
1> This line 2> 3> And this are on eblock quote
- lists: I learned that I could number all items with
1.
which will make it easy to edit to reorder without having to renumber all items.1- item 2- another 3- and another 4 51. this 61. that 71. and the other
- code
`inline code` ``` lines of code ```
- escape
11\. this is no longer a list item
- line break
1line\ 2another\
- paragraph break
1dfdfdfdfd 2 3dfdfdfdfdf
- nesting
1Put 4 spaces before each line: 2 item 3 item