First paragraph.
Fake paragraph.
New paragraph without an extra lilne after 2 spaces.
New paragraph with an extra line after 2 enters.
Intended paragraph after 2 spaces.
New Intended paragraph.
More intended paragraph.
New more intended paragraph.
Even more intended paragraph.
New even more intended paragraph.
> Blockquotes.
> This line is part of the same quote.
> This is new quote.
---
___
***
[Inline-style link](https://www.google.com)
[Inline-style link with title](https://www.google.com "Google")
[Inline-style link to a repository file](../folder/folder/file.txt)
[Reference-style link with a word reference][Reference]
[Reference-style link with a number][1]
Reference-style link with separate URL [this is the link]
Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
Raw URL turned into link - without brackets: https://www.google.com,
with brackets: <https://www.google.com>
[Reference]: https://www.mozilla.org
[1]: http://slashdot.org
[this is the link]: http://www.reddit.com
Inline-style image:
![alternative text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1")
Reference-style image
![alternative text][logo]
[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
In-line `code` inside back-ticks.
Block of codes inside triple back-ticks.
```
var x = "abc";
```
Block of code with a specific language
```py
x = [1, 2, 3]
```
Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
<dl>
<dt>Definition list</dt>
<dd>Is something people use sometimes.</dd>
<dt>Markdown in HTML</dt>
<dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
</dl>
[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg)](http://www.youtube.com/watch?v=YOUTUBE_VIDEO_ID_HERE)
<a href="http://www.youtube.com/watch?feature=player_embedded&v=YOUTUBE_VIDEO_ID_HERE
" target="_blank"><img src="http://img.youtube.com/vi/YOUTUBE_VIDEO_ID_HERE/0.jpg"
alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a>