summaryrefslogtreecommitdiff
path: root/examples/markdown.md
blob: d1413fd4f2399c241615d4331eff76292f40ccff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Huge header
###### Tiny header

Some text:
blah-blah-blah...

New paragraph. *Italic*. **Bold**. _alternative_ __style__.
++Underlined++. ~~Striked~~. `Mono`.

----

This was horizontal rule.

> This is
> *quote*.

```
bool Block::is_code()
{
    return this->should_be();
}
```

![Awesome alt](../awseome.jpg "Awesome Title")

[Awesome link](example.com "Awesome title of link")

[![Magic alt](../magic.png "Ignored")](example.com "Magic title of linked pic")