summaryrefslogtreecommitdiff
path: root/tests/examplefiles/example.md
blob: e2bbacf13c2fa78f5305911a17c1adb7055c3cc8 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# this is a header

## this is a 2nd level header

* list item 1
  * list item 1.1
* list item 2
- list item 3

1. numbered list item 1
1. numbered list item 2

- [ ] todo
- [x] done
- [X] done

The following is italic: *italic*
The following is italic: _italic_

The following is not italic: \*italic\*
The following is not italic: \_italic\_

The following is not italic: snake*case*word
The following is not italic: snake_case_word

The following is bold: **bold** **two or more words**
The following is bold: __bold__ __two or more words__

The following is not bold: snake**case**word
The following is not bold: snake__case__word

The following is strikethrough: ~~bold~~
The following is not strikethrough: snake~~case~~word

The following is bold with italics inside: **the next _word_ should have been italics**

> this is a quote

> this is a multiline
> quote string thing

this sentence `has monospace` in it

this sentence @tweets a person about a #topic.

[google](https://google.com/some/path.html)
![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)

[reference link][id]
[id]: http://example.com/

```
  * this is just unformated
      __text__
```

some other text

```python
from pygments import token
# comment
```

some more text