Markdown is a lightweight markup language for creating formatted text using a plain-text editor.
It is recommended to use a tool such as Visual Studio Code [Link] with the extension Auto-Open Markdown Preview [Link] or at least one online editor like StackEdit [Link].
GitHub has its own flavor of markdown with few extra features.
<!-- Comments that will not show up in the view -->
# Bigger header
## Second bigger header ### Medium size header #### Medium size header ##### Second smaller header ###### Smaller header
*italic* _italic_ **strong** __strong__ ***italic and strong*** ~~strikedthrough~~
--- ___ ***
\*scape character\*
> block quote
[link caption](http://.../ "title")
* topic * sub-topic
1. list item one 1. list item two
`code block`
![image name](http://.../ "title")
``` big code block for github ```
```javascript varName = "string"; ```
| table collumn one | table collumn two | | - | - | | line one col one | line one col one | | line two col two | line two col two |
* [ ] unchecked task * [x] checked task
the next line entry\
Here's a sentence with a footnote. [^1] [^1]: This is the footnote.
term : definition