Markdown Guide Emphasis
For a quick cheatsheet, reference: https://simplemde.com/markdown-guide
bold
italics
strikethrough
Headers
Big header
Medium header
Small header
Tiny header
Lists
- Generic list item
- Generic list item
- Generic list item
- Numbered list item
- Numbered list item
- Numbered list item
Links
Quotes
This is a quote. It can span multiple lines!
Images

Tables
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| John | Doe | Male |
| Mary | Smith | Female |
Or without aligning the columns...
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| John | Doe | Male |
| Mary | Smith | Female |
Displaying code
var example = "hello!";
Or spanning multiple lines...
var example = "hello!";
alert(example);