summaryrefslogtreecommitdiffstats
path: root/packages/markdown/marked/test/new/cm_blockquotes.html
blob: b4d51b1f6b0f7e19dbf5b368606c5583132b664f (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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<h3 id="example-191">Example 191</h3>

<blockquote>
<h1 id="foo">Foo</h1>
<p>bar
baz</p>
</blockquote>

<h3 id="example-192">Example 192</h3>

<p>The spaces after the <code>&gt;</code> characters can be omitted:</p>

<blockquote>
<h1 id="bar">Bar</h1>
<p>bar
baz</p>
</blockquote>

<h3 id="example-193">Example 193</h3>

<p>The <code>&gt;</code> characters can be indented 1-3 spaces:</p>

<blockquote>
<h1 id="baz">Baz</h1>
<p>bar
baz</p>
</blockquote>

<h3 id="example-194">Example 194</h3>

<p>Four spaces gives us a code block:</p>

<pre><code>&gt; # Qux
&gt; bar
&gt; baz</code></pre>

<h3 id="example-195">Example 195</h3>

<p>The Laziness clause allows us to omit the <code>&gt;</code> before paragraph continuation text:</p>

<blockquote>
<h1 id="quux">Quux</h1>
<p>bar
baz</p>
</blockquote>

<h3 id="example-196">Example 196</h3>

<p>A block quote can contain some lazy and some non-lazy continuation lines:</p>

<blockquote>
<p>bar
baz
foo</p>
</blockquote>

<h3 id="example-197">Example 197</h3>

<p>Laziness only applies to lines that would have been continuations of paragraphs had they been prepended with block quote markers. For example, the <code>&gt;</code> cannot be omitted in the second line of</p>

<blockquote>
<p>foo</p>
</blockquote>
<hr>

<p>without changing the meaning.</p>

<h3 id="example-198">Example 198</h3>

<pre><code>Similarly, if we omit the `&gt;` in the second line then the block quote ends after the first line:

&gt; - foo
- bar</code></pre>

<h3 id="example-199">Example 199</h3>

<p>For the same reason, we can’t omit the <code>&gt;</code> in front of subsequent lines of an indented or fenced code block:</p>

<blockquote>
<pre><code>foo</code></pre>
</blockquote>
<pre><code>bar</code></pre>

<h3 id="example-200">Example 200</h3>

<pre><code>&gt; ```
foo
```

&lt;blockquote&gt;
&lt;pre&gt;&lt;code&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;p&gt;foo&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&lt;/code&gt;&lt;/pre&gt;</code></pre>

<h3 id="example-201">Example 201</h3>
<pre><code>&gt; foo
    - bar

&lt;blockquote&gt;
&lt;p&gt;foo
- bar&lt;/p&gt;
&lt;/blockquote&gt;</code></pre>

<h3 id="example-202">Example 202</h3>

<p>A block quote can be empty:</p>

<blockquote>
</blockquote>

<h3 id="example-203">Example 203</h3>

<blockquote>
</blockquote>

<h3 id="example-204">Example 204</h3>

<p>A block quote can have initial or final blank lines:</p>

<blockquote>
<p>foo</p>
</blockquote>


<h3 id="example-205">Example 205</h3>

<p>A blank line always separates block quotes:</p>

<blockquote>
<p>foo</p>
</blockquote>
<blockquote>
<p>bar</p>
</blockquote>

<h3 id="example-206">Example 206</h3>

<p>Consecutiveness means that if we put these block quotes together, we get a single block quote:</p>

<blockquote>
<p>foo
bar</p>
</blockquote>

<h3 id="example-207">Example 207</h3>

<p>To get a block quote with two paragraphs, use:</p>

<blockquote>
<p>foo</p>
<p>bar</p>
</blockquote>

<h3 id="example-208">Example 208</h3>

<p>Block quotes can interrupt paragraphs:</p>

<p>foo</p>
<blockquote>
<p>bar</p>
</blockquote>

<h3 id="example-209">Example 209</h3>

<p>In general, blank lines are not needed before or after block quotes:</p>

<blockquote>
<p>aaa</p>
</blockquote>
<hr>
<blockquote>
<p>bbb</p>
</blockquote>

<h3 id="example-210">Example 210</h3>

<p>However, because of laziness, a blank line is needed between a block quote and a following paragraph:</p>

<blockquote>
<p>bar
baz</p>
</blockquote>

<h3 id="example-211">Example 211</h3>

<blockquote>
<p>bar</p>
</blockquote>
<p>baz</p>

<h3 id="example-212">Example 212</h3>

<blockquote>
<p>bar</p>
</blockquote>
<p>baz</p>

<h3 id="example-213">Example 213</h3>

<p>It is a consequence of the Laziness rule that any number of initial <code>&gt;</code>s may be omitted on a continuation line of a nested block quote:</p>

<blockquote>
<blockquote>
<blockquote>
<p>foo
bar</p>
</blockquote>
</blockquote>
</blockquote>

<h3 id="example-214">Example 214</h3>

<blockquote>
<blockquote>
<blockquote>
<p>foo
bar
baz</p>
</blockquote>
</blockquote>
</blockquote>

<h3 id="example-215">Example 215</h3>

<p>When including an indented code block in a block quote, remember that the block quote marker includes both the <code>&gt;</code> and a following space. So five spaces are needed after the <code>&gt;</code>:</p>

<blockquote>
<pre><code>code</code></pre>
</blockquote>
<blockquote>
<p>not code</p>
</blockquote>