added tests for matthewwithanm#11

This commit is contained in:
AlexVonB
2019-07-04 16:32:21 +02:00
committed by GitHub
parent d0f688d2e4
commit 5f9243d91d

View File

@@ -103,6 +103,9 @@ def test_strong():
def test_ul():
assert md('<ul><li>a</li><li>b</li></ul>') == '* a\n* b\n'
def test_inline_ul():
assert md('<p>foo</p><ul><li>a</li><li>b</li></ul><p>bar</p>') == 'foo \n* a\n* b\n\nbar'
def test_nested_uls():