summaryrefslogtreecommitdiff
path: root/samples/test.md
blob: 24b7e7a980f979915f1c548cf90a62eb0b6cd571 (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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
# Learn Markdown

Markdown is a lightweight markup language for formatting plain text. It’s widely used for README files, documentation, notes, and writing on platforms like GitHub.

---

## 1. Headings

Use `#` characters for headings. More `#` means a smaller heading.

```md
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
```

---

## 2. Paragraphs & Line Breaks

Just write text normally.

* Leave a **blank line** between paragraphs.
* Add two spaces at the end of a line for a manual line break.

---

## 3. Emphasis

```md
*Italic* or _Italic_
**Bold** or __Bold__
***Bold and Italic***
~~Strikethrough~~
```

*Italic*
**Bold**
***Bold and Italic***
~~Strikethrough~~

---

## 4. Lists

### Unordered Lists

```md
- Item
- Item
  - Nested item
* Item
```

### Ordered Lists

```md
1. First
2. Second
3. Third
```

---

## 5. Links

```md
[Link text](https://example.com)
```

[Example link](https://example.com)

---

## 6. Images

```md
![Alt text](https://example.com/image.png)
```

---

## 7. Code

### Inline Code

```md
Use `inline code` for short snippets.
```

Use `inline code` for short snippets.

### Code Blocks

````md
```python
def hello():
    print("Hello, Markdown!")
````

````

```python
def hello():
    print("Hello, Markdown!")
````

---

## 8. Blockquotes

```md
> This is a blockquote.
>> Nested blockquote.
```

> This is a blockquote.
>
> > Nested blockquote.

---

## 9. Horizontal Rules

```md
---
***
___
```

---

## 10. Tables

```md
| Name | Level | Class |
|------|-------|-------|
| Alex | 60    | Mage  |
| Sam  | 45    | Rogue |
```

| Name | Level | Class |
| ---- | ----- | ----- |
| Alex | 60    | Mage  |
| Sam  | 45    | Rogue |

---

## 11. Task Lists

```md
- [x] Learn Markdown basics
- [ ] Write documentation
- [ ] Become awesome
```

* [x] Learn Markdown basics
* [ ] Write documentation
* [ ] Become awesome

---

## 12. Escaping Characters

Use a backslash (`\`) to escape Markdown characters.

```md
\*This is not italic\*
```

*This is not italic*

---

## 13. Common Markdown Extensions (Platform-dependent)

Some platforms (like GitHub) support extra features:

* Syntax highlighting
* Task lists
* Tables
* Strikethrough
* Emoji `:smile:` 😄

---

## 14. Tips for Learning

* Read Markdown source and rendered output side by side
* Practice by writing a README.md
* Use a Markdown preview editor

---

## 15. Minimal Cheat Sheet

```md
# Heading
**Bold** *Italic*
[Link](url)
`Code`
- List item
> Quote
```

---

Happy writing! ✨