86
1
### Headings
2
3
# Heading 1
4
## Heading 2
5
### Heading 3
6
7
### Bold
8
9
**bold text**
10
11
### Italic
12
13
*italic text*
14
15
### Blockquote
16
17
> This is a blockquote.
18
19
### Ordered List
20
21
1. First item
22
2. Second item
23
3. Third item
24
25
### Unordered List
26
27
- First item
28
- Second item
29
- Third item
30
31
### Code Block
32
33
```html
34
<article class="forecast">
35
<h1>Weather forecast for San Francisco</h1>
36
37
<article class="daily-forecast">
38
<h2>11. February 2021</h2>
39
<p>Sunny.</p>
40
</article>
41
42
<article class="daily-forecast">
43
<h2>12. February 2021</h2>
44
<p>Sunny.</p>
45
</article>
46
47
<article class="daily-forecast">
48
<h2>13. February 2021</h2>
49
<p>Sunny.</p>
50
</article>
51
</article>
52
```
53
54
### Inline Code
55
56
This is an `inline code`.
57
58
### Horizontal Rule
59
60
---
61
62
### Link
63
64
[Link Text](https://markodenic.com)
65
66
### Image
67
68

69
70
### Table
71
72
| firstName | LastName |
73
| ----------- | -------- |
74
| John | Doe |
75
| Jane | Doe |
76
| Marko | Denic |
77
78
### Strikethrough
79
80
~~The world is flat.~~
81
82
### Task List
83
84
- [x] Create an app
85
- [ ] Deploy it
86
- [ ] Announce it
Headings
Heading 1
Heading 2
Heading 3
Bold
bold text
Italic
italic text
Blockquote
This is a blockquote.
Ordered List
- First item
- Second item
- Third item
Unordered List
- First item
- Second item
- Third item
Code Block
<article class="forecast">
<h1>Weather forecast for San Francisco</h1>
<article class="daily-forecast">
<h2>11. February 2021</h2>
<p>Sunny.</p>
</article>
<article class="daily-forecast">
<h2>12. February 2021</h2>
<p>Sunny.</p>
</article>
<article class="daily-forecast">
<h2>13. February 2021</h2>
<p>Sunny.</p>
</article>
</article>
Inline Code
This is an inline code
.
Horizontal Rule
Link
Image
Table
firstName | LastName |
---|---|
John | Doe |
Jane | Doe |
Marko | Denic |
Strikethrough
The world is flat.
Task List
- Create an app
- Deploy it
- Announce it