Markdown Guide¶
Emphasis¶
**bold**
*italics*
~~strikethrough~~
Headers¶
# Big header
## Medium header
### Small header
#### Tiny header
Lists¶
* Generic list item
* Generic list item
* Generic list item
1. Numbered list item
2. Numbered list item
3. Numbered list item
Links¶
[Text to display](http://www.example.com)
Quotes¶
> This is a quote.
> It can span multiple lines!
Images¶
Need to upload an image? SimpleMDE has a great interface.

Tables¶
| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John | Doe | Male |
| Mary | Smith | Female |
| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John | Doe | Male |
| Mary | Smith | Female |
Displaying code¶
`var example = "hello!";`
var example = "hello!";
alert(example);
Last update: 2020-03-12 14:42:51