1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

More appropriate tests for these changes

This commit is contained in:
Aidan Woods 2016-10-11 20:55:59 +01:00 committed by GitHub
parent d26b33c20f
commit 8965c7864f
2 changed files with 18 additions and 4 deletions

View File

@ -2,7 +2,7 @@
<li>li</li>
<li>li</li>
</ul>
<p>mixed markers:</p>
<p>mixed unordered markers:</p>
<ul>
<li>li</li>
</ul>
@ -11,4 +11,12 @@
</ul>
<ul>
<li>li</li>
</ul>
</ul>
<p>mixed ordered markers:</p>
<ol>
<li>starting at 1, list one</li>
<li>number 2, list one</li>
</ol>
<ol start="3">
<li>starting at 3, list two</li>
</ol>

View File

@ -1,8 +1,14 @@
- li
- li
mixed markers:
mixed unordered markers:
* li
+ li
- li
- li
mixed ordered markers:
1. starting at 1, list one
2. number 2, list one
3) starting at 3, list two