blob: 7d37ee5c573dd1feda0fa90f1b8983d03616ef57 (
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
|
+++
title="This is a good first post"
date=2019-08-23
draft=false
[taxonomies]
tags=["hello", "blog", "first"]
+++
So i went there and did all that but as you know:
* This point was important
* This as well...
* And not to mention this one
So i did those other things but:
1. The first thing
2. And the second thing
3. But the third was the `best`
And then the guy said:
> Man, i'm not gonna be the part of the system
And showed me this:
<img src="https://dummyimage.com/640x4:3/">
I said factorial this...
```rust
fn factorial(n: u64) -> u64 {
match n {
0 => 1,
_ => n * factorial(n-1)
}
}
```
Then i shouted
# Hello
... and the echo answered:
## Hello
### Hello
#### Hello
[zola!!!][1]
[1]: https://www.getzola.org/
|