Markdown-cheatsheet icon indicating copy to clipboard operation
Markdown-cheatsheet copied to clipboard

heading 1

heading 2

heading 3

heading 4

heading 5

this text is italics

italic

bold

~~strike~~



Block quotes

this is a block

Links

This is a link

This is a link with tooltip

Lists

  • item1
    • item2
  1. first item
  2. second item

Inline code block

<p></p>

Images

Hollow Knight

Code Blocks

Bash code block

    npm install
    

JS code block

function add(num1, num2){

}

Python code block

print("Hi there")

Task list

  • [x] done
  • [ ] not done

Tables

Column 1 Column 2 Column 3
Row 1, Column 1 Row 1, Column 2 Row 1, Column 3
Row 2, Column 1 Row 2, Column 2 Row 2, Column 3
Row 3, Column 1 Row 3, Column 2 Row 3, Column 3

Diff

- This line is removed.
+ This line is added.

Collapsible content

Click to see more!
        ## More awesoms tips!

        - item 1 
        - item 2
    </details>