parsedown/tests/test_data/unordered_list.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

20 lines
417 B
HTML

<p>Here's a regular unordered list:</p>
<ul>
<li>list item</li>
<li>another list item</li>
<li>3rd list item</li>
</ul>
<p>Here's one with a variety of markers:</p>
<ul>
<li>hyphen</li>
<li>plus</li>
<li>asterisk</li>
</ul>
<p>Here's one with white space around items:</p>
<ul>
<li>list item </li>
<li>another list item </li>
</ul>
<p>Here's one with no space after markers:</p>
<p>-list item
-another list item</p>