Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Text Emphasis
This **will** make text bold.
And this should _make text_ italic.
Doing so can ~~strikethrough~~ text. (GFM syntax)
Links
Normal Links
[Link Text](http://example.com/)
[Link Text](http://example.com/ "Link Title (optional)")
Refrence-Style Links
[Link Text][1]
And then define the reference anywhere in the document:
[1]: http://example.com/ "Link Title (optional)"
Images
![Alt Text](/path/to/image.jpg)
![Alt Text](/path/to/image.jpg "Image Title (optional)")
You can also apply reference-style syntax to image, like:
![Alt Text][2]
[2]: /path/to/image.jpg "Image Title (optional)"
Blockquote
Basic Quotation
> Quoted
> Block
> Text
Octopress Quotation Syntax
{% blockquote Author Name %}
Flying is learning how to throw yourself at the ground and miss.
{% endblockquote %}
{% blockquote Author Name https://example.com/quotation/source/link %}
Over the past 24 hours I've been reflecting on my life & I've realized only one thing. I need a medieval battle axe.
{% endblockquote %}
Lists
Ordered List
1. List Item #1
2. List Item #2
3. List Item #3
Unordered List
* List Item #1
* List Item #2
* List Item #3
Codes
Inline Code
Press `Command-Z` to undo.
GFM Code Block
```
console.log('Hello World!');
```
GFM Code Block with Language and Title
``` html welcome.html
<html>
...
</html>
```
Table
| First Header | Second Header | Third Header |
| ------------ | :-----------: | -----------: |
| Content | center-align | right-align |
| Content | **Cell** | Cell |
| New section | More | Data |