diff options
| author | Waylan Limberg <waylan.limberg@icloud.com> | 2015-04-07 19:50:25 -0400 |
|---|---|---|
| committer | Waylan Limberg <waylan.limberg@icloud.com> | 2015-04-22 19:53:49 -0400 |
| commit | 11408e50da9263104cc13fabf8bb86d7faa69689 (patch) | |
| tree | 812f034ad74dc63aca373450268e99a1d62c32b7 /tests/extensions | |
| parent | 0005d7a1c03faa89ccd8a4293741843afcdbbd9b (diff) | |
| download | python-markdown-11408e50da9263104cc13fabf8bb86d7faa69689.tar.gz | |
Removed laxy_ol keyword. Use sane_lists extension instead.
Diffstat (limited to 'tests/extensions')
| -rw-r--r-- | tests/extensions/sane_lists.html | 13 | ||||
| -rw-r--r-- | tests/extensions/sane_lists.txt | 10 |
2 files changed, 22 insertions, 1 deletions
diff --git a/tests/extensions/sane_lists.html b/tests/extensions/sane_lists.html index b9fe007..ed51b4d 100644 --- a/tests/extensions/sane_lists.html +++ b/tests/extensions/sane_lists.html @@ -18,4 +18,15 @@ <ul> <li>Unordered again 1. not a list item</li> -</ul>
\ No newline at end of file +</ul> +<ol start="3"> +<li>Bird</li> +<li>McHale</li> +<li>Parish</li> +</ol> +<p>Not a list</p> +<ol start="3"> +<li>Bird</li> +<li>McHale</li> +<li>Parish</li> +</ol>
\ No newline at end of file diff --git a/tests/extensions/sane_lists.txt b/tests/extensions/sane_lists.txt index 51981b3..464149f 100644 --- a/tests/extensions/sane_lists.txt +++ b/tests/extensions/sane_lists.txt @@ -14,3 +14,13 @@ Paragraph * Unordered again 1. not a list item + +3. Bird +1. McHale +8. Parish + +Not a list + +3. Bird +1. McHale +8. Parish
\ No newline at end of file |
