Skip to content

Commit

Permalink
Added tests for mixed OL and UL lists.
Browse files Browse the repository at this point in the history
  • Loading branch information
michelf committed Feb 29, 2008
1 parent 5d3abd5 commit 498cab5
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
13 changes: 13 additions & 0 deletions PHP Markdown.mdtest/Mixed OLs and ULs.text
@@ -0,0 +1,13 @@
* test
+ test
- test

1. test
2. test

* test
+ test
- test

1. test
2. test
21 changes: 21 additions & 0 deletions PHP Markdown.mdtest/Mixed OLs and ULs.xhtml
@@ -0,0 +1,21 @@
<ul>
<li>test</li>
<li>test</li>
<li>test</li>
</ul>

<ol>
<li>test</li>
<li>test</li>
</ol>

<ul>
<li>test</li>
<li>test</li>
<li>test</li>
</ul>

<ol>
<li>test</li>
<li>test</li>
</ol>

0 comments on commit 498cab5

Please sign in to comment.