mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
25 lines
618 B
HTML
25 lines
618 B
HTML
|
<p>Here's a regular blockquote:</p>
|
||
|
<blockquote>
|
||
|
<p>This is a blockquote.</p>
|
||
|
</blockquote>
|
||
|
<p>Here's one with no space after the ">":</p>
|
||
|
<blockquote>
|
||
|
<p>This is a blockquote.</p>
|
||
|
</blockquote>
|
||
|
<p>Here's one with multiple paragraphs:</p>
|
||
|
<blockquote>
|
||
|
<p>This is line one.</p>
|
||
|
<p>This is line two.</p>
|
||
|
</blockquote>
|
||
|
<p>Here's one with multiple types of blocks:</p>
|
||
|
<blockquote>
|
||
|
<p>This is a quoted paragraph.</p>
|
||
|
<ul>
|
||
|
<li>This is a list item of a quoted list.</li>
|
||
|
<li>This is another list item.</li>
|
||
|
</ul>
|
||
|
<blockquote>
|
||
|
<p>This is a nested quote block.</p>
|
||
|
</blockquote>
|
||
|
<p>This is another paragraph.</p>
|
||
|
</blockquote>
|