diff --git a/tests/HtmlConverterTest.php b/tests/HtmlConverterTest.php index 3ba460b..cde4694 100644 --- a/tests/HtmlConverterTest.php +++ b/tests/HtmlConverterTest.php @@ -53,6 +53,7 @@ public function test_line_breaks() $this->html_gives_markdown('

test
another line

', "test\nanother line", array('hard_break' => true)); $this->html_gives_markdown('

test
another line

', "test\nanother line", array('hard_break' => true)); $this->html_gives_markdown('

test
another line

', "test\nanother line", array('hard_break' => true)); + $this->html_gives_markdown('

foo

bar

baz

', "foo\n\n
bar
\n\nbaz"); } public function test_headers()