aboutsummaryrefslogtreecommitdiff
path: root/posts/002-example-syntax.md
blob: 7131d146f196565978efea42646d8b1230514fbf (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
## Syntax Possiblities

Please see the [GitHub Flavored Markdown specs](https://github.github.com/gfm/) and
the [parsedown](https://github.com/erusev/parsedown) repository for more specific details on Markdown possiblities.

---

Headings:

# Heading - Level 1

## Heading - Level 2

### Heading - Level 3

#### Heading - Level 4

##### Heading - Level 5

###### Heading - Level 6

---

Formatted Text:

**Bold text**  
*Italics*  
~~strikethrough~~  
[a simple link](https://example.com)

---

Blockquotes:

> # Foo
> bar
> baz

---

Lists:

1. one
2. two
3. three
    1. sub-bullet

- unordered one
- unordered two

---

Code Blocks:

```html
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Hello, world!</title>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
```

---

Tables:

| foo | bar |
| --- | --- |
| baz | bim |

---