Markdown
Markdown is a lightweight markup language for creating formatted text using a plain-text editor. John Gruber created Markdown in 2004. The primary design goal of Markdown is to make the text as readable as possible in its plain text form, allowing it to be easily converted to valid HTML without looking overly marked up with tags. Compare it with Asciidoc.
Markdown is widely used for blogging and instant messaging, and also used elsewhere in online forums, collaborative software, documentation pages, and readme files.
## H2 level: Bold and Italic
This text **is bold**.
This text *is italic*.
This text ~~is struck out~~.
This is `inline code`.
You can also indent by 4 leading spaces or a leading tab for literal text.
* Unordered List Item1
* Unordered List Item2
1. Ordered List Item1
2. Ordered List Item2
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
Link using [text](link) syntax. Standalone links in Markdown text by default are turned into links: https://google.com
Images use .
> Block quote