summaryrefslogtreecommitdiffstats
path: root/test/fixtures/PAGE.md
blob: 2839e6d428e56cdbd5c74dce5a80a63d3cc04502 (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
# Python basics

Python is a nice language, you can add stuff. Bla bla bla.

Lets jump into an exercise :

---

It's dead simple, `c` must be the sum of `a` and `b`

```py
a = 1
b = 2
```

```py
a = 1
b = 2
c = a + b
```

```py
assert(c, 3)
```

---

Some more nice content ....

[Cool stuff](http://gitbook.io)

[Link to another Markdown file](./xyz/file.md)