You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
39
47
40
-
#### Blockquote without attribution
48
+
### Blockquote without attribution
49
+
50
+
#### Syntax
51
+
52
+
```markdown
53
+
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
54
+
> **Note** that you can use _Markdown syntax_ within a blockquote.
55
+
```
56
+
57
+
#### Output
41
58
42
59
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
43
60
> **Note** that you can use _Markdown syntax_ within a blockquote.
44
61
45
-
#### Blockquote with attribution
62
+
### Blockquote with attribution
63
+
64
+
#### Syntax
65
+
66
+
```markdown
67
+
> Don't communicate by sharing memory, share memory by communicating.<br>
68
+
> — <cite>Rob Pike[^1]</cite>
69
+
```
70
+
71
+
#### Output
46
72
47
73
> Don't communicate by sharing memory, share memory by communicating.<br>
48
74
> — <cite>Rob Pike[^1]</cite>
@@ -51,12 +77,43 @@ The blockquote element represents content that is quoted from another source, op
51
77
52
78
## Tables
53
79
80
+
#### Syntax
81
+
82
+
```markdown
83
+
| Italics | Bold | Code |
84
+
| --------- | -------- | ------ |
85
+
| _italics_ | **bold** | `code` |
86
+
87
+
```
88
+
89
+
#### Output
90
+
54
91
| Italics | Bold | Code |
55
92
| --------- | -------- | ------ |
56
93
|_italics_|**bold**|`code`|
57
94
58
95
## Code Blocks
59
96
97
+
#### Syntax
98
+
99
+
we can use 3 backticks ``` in new line and write snippet and close with 3 backticks on new line and to highlight language specific syntac, write one word of language name after first 3 backticks, for eg. html, javascript, css, markdown, typescript, txt, bash
100
+
101
+
````markdown
102
+
```html
103
+
<!DOCTYPE html>
104
+
<html lang="en">
105
+
<head>
106
+
<meta charset="utf-8" />
107
+
<title>Example HTML5 Document</title>
108
+
</head>
109
+
<body>
110
+
<p>Test</p>
111
+
</body>
112
+
</html>
113
+
```
114
+
````
115
+
Output
116
+
60
117
```html
61
118
<!DOCTYPE html>
62
119
<htmllang="en">
@@ -72,19 +129,53 @@ The blockquote element represents content that is quoted from another source, op
72
129
73
130
## List Types
74
131
75
-
#### Ordered List
132
+
### Ordered List
133
+
134
+
#### Syntax
135
+
136
+
```markdown
137
+
1. First item
138
+
2. Second item
139
+
3. Third item
140
+
```
141
+
142
+
#### Output
76
143
77
144
1. First item
78
145
2. Second item
79
146
3. Third item
80
147
81
-
#### Unordered List
148
+
### Unordered List
149
+
150
+
#### Syntax
151
+
152
+
```markdown
153
+
- List item
154
+
- Another item
155
+
- And another item
156
+
```
157
+
158
+
#### Output
82
159
83
160
- List item
84
161
- Another item
85
162
- And another item
86
163
87
-
#### Nested list
164
+
### Nested list
165
+
166
+
#### Syntax
167
+
168
+
```markdown
169
+
- Fruit
170
+
- Apple
171
+
- Orange
172
+
- Banana
173
+
- Dairy
174
+
- Milk
175
+
- Cheese
176
+
```
177
+
178
+
#### Output
88
179
89
180
- Fruit
90
181
- Apple
@@ -96,6 +187,22 @@ The blockquote element represents content that is quoted from another source, op
96
187
97
188
## Other Elements — abbr, sub, sup, kbd, mark
98
189
190
+
#### Syntax
191
+
192
+
```markdown
193
+
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
194
+
195
+
H<sub>2</sub>O
196
+
197
+
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
198
+
199
+
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
200
+
201
+
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
202
+
```
203
+
204
+
#### Output
205
+
99
206
<abbrtitle="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
0 commit comments