Markdown

Here are the key concepts of Markdown notation. See this commonmark.org tutorial for details:

  1. italic & bold
    1*italice*
    2**bold**
    
  2. heading
    1# H1
    2## H2
    3...
    
  3. link
    1[this link](www.url.com)
    
  4. image
    1![this image tag](image-url.com)
    
  5. blockquote
    1> This line
    2> 
    3> And this are on eblock quote
    
  6. 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
    
  7. code
    `inline code`
    
    ```
    lines of code
    ```
    
  8. escape
    11\. this is no longer a list item
    
  9. line break
    1line\
    2another\
    
  10. paragraph break
    1dfdfdfdfd
    2
    3dfdfdfdfdf
    
  11. nesting
    1Put 4 spaces before each line:
    2    item
    3    item