Infernal Markdown compatibility test:
--------------------
Header 1
========
Header 2
--------
--------
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6
--------
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla neque nisl, fringilla sed blandit non, pretium eu odio.
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Nulla neque nisl, fringilla sed blandit non, pretium eu odio.
--------
> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
> Nulla neque nisl, fringilla sed blandit non, pretium eu odio.
> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Nulla neque nisl, fringilla sed blandit non, pretium eu odio.
--------
> Lorem ipsum dolor sit amet,
> > consectetur adipiscing elit.
> > Nulla neque nisl,
> fringilla sed blandit non, pretium eu odio.
--------
> ### H3
>
> > This is a nested blockquote
>
> * list
> * list
--------
* one
* two
* three
--------
1. one
2. two
3. three
--------
Lorem ipsum dolor sit amet
consectetur adipiscing elit.
Nulla neque nisl, fringilla sed blandit non, pretium eu odio.
--------
<div class="row">
Hello World!
</div>
--------
Don't forget to add `echo $foo;`.
Please replace `<b>` to `<strong>`.
--------
* * *
*******
- - - -
--------
This is an [inline link](http://example.com).
This [link](http://example.com "example website") has title attribute.
--------
This is an [reference style link][id1].
This [link][id2] has title attribute.
[id1]: http://example.com/
[id2]: http://example.com/ "example website"
--------
You can [omit the id of the link][].
[omit the id of the link]: http://example.com/
--------
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
--------


--------
![Alt text][id1]
![Alt text][id2]
[id1]: /path/to/image.png
[id2]: /path/to/image.png "Title"
--------
GFM
--------
http://www.example.com
--------
~~strike~~
--------
```
$ git clone https://github.com/kzykhys/Ciconia.git
$ cd Ciconia
$ composer install
```
--------
``` php
<?php
require __DIR__ . '/vendor/autoload.php';
```
--------
- [ ] This is an imcomplete task.
- [x] This is a complete task.
--------
| head | head |
|------|------|
| body | body |
--------
head | head
-----|-----
body | body
--------
| head | head |
|-----:|:----:|
| body | body |