Markdown Guide
Paragraphs
1
2
3
| This is a paragraph.
This is another paragraph.
|
Hard Breaks
1
2
| This is a line.
This is another line.
|
Emphasis
1
2
3
| **bold**
*italics*
~~strikethrough~~
|
1
2
3
4
| # Big header
## Medium header
### Small header
#### Tiny header
|
Lists
1
2
3
| * Generic list item
* Generic list item
* Generic list item
|
1
2
3
| 1. Numbered list item
2. Numbered list item
3. Numbered list item
|
Links
1
| [Text to display](http://www.example.com)
|
Quotes
1
2
| > This is a quote.
> It can span multiple lines!
|
Images
1
| ![](http://www.example.com/image.jpg)
|
Tables
1
2
3
4
| | Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John | Doe | Male |
| Mary | Smith | Female |
|
Or without aligning the columns…
1
2
3
4
| | Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John | Doe | Male |
| Mary | Smith | Female |
|
Code
1
| `var example = "hello!";`
|
Or spanning multiple lines…
```
var example = "hello!";
alert(example);
```
Mention