blob: cecfa2d7e477722c5e649ad63bb36cba19cf78fe (
plain) (
blame)
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
|
This is a post to demonstrate and test content generation code. I am not a
writing master, so I am going just enumerate features I am going to use to see
how they are rendered.
And I want to know how multiple paragraphs are rendered.
## Code
Standalone code block like this one.
```
#include <iostream>
int main() {
std::cout << "Hello, World" << std::endl;
return 0;
}
```
And embedded code like `this` and `this`.
## Lists
* I
* like
* itemized
* lists
Also, sometimes I use enumerated lists like this one.
1. One.
2. Two.
3. Three.
## Formatting
This is a **bold** text. And this is _italic_.
## Quotes
> I don't know what's the matter with people: they don't learn by
> understanding; they learn by some other way — by rote or something.
> Their knowledge is so fragile!
## Footnotes
Oh, some it would nice to have footnotes like this one[^1].
[^1]: This should work.
## URLs
Here is the url to [website][1]. And the same [url](https://ilvokhin.com), but
embedded into the text.
[1]: https://ilvokhin.com
|