diff --git a/tests/test_advanced.py b/tests/test_advanced.py index 2f8aeb1..7ee61d2 100644 --- a/tests/test_advanced.py +++ b/tests/test_advanced.py @@ -5,10 +5,12 @@ def test_nested(): text = md('

This is an example link.

') assert text == 'This is an [example link](http://example.com/).\n\n' + def test_ignore_comments(): text = md("") assert text == "" + def test_ignore_comments_with_other_tags(): text = md("example link") - assert text == "[example link](http://example.com/)" \ No newline at end of file + assert text == "[example link](http://example.com/)"