parsedown/tests/test_data/blockquote.html
hkdobrev 87c0b4264a Renamed tests/tests to tests/test_data
When looking at your folder structure, it is easier to grasp that the .md and .html files are just your data for the tests
2013-07-20 09:06:33 +03:00

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>