Skip to content

Commit

Permalink
Add test for #166
Browse files Browse the repository at this point in the history
  • Loading branch information
colinodell committed Nov 18, 2018
1 parent 6a8ad78 commit 5ca5dad
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/HtmlConverterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public function test_line_breaks()
$this->html_gives_markdown('<p>test<br/>another line</p>', "test\nanother line", array('hard_break' => true));
$this->html_gives_markdown('<p>test<br />another line</p>', "test\nanother line", array('hard_break' => true));
$this->html_gives_markdown('<p>test<br />another line</p>', "test\nanother line", array('hard_break' => true));
$this->html_gives_markdown('<p>foo</p><table><tr><td>bar</td></tr></table><p>baz</p>', "foo\n\n<table><tr><td>bar</td></tr></table>\n\nbaz");
}

public function test_headers()
Expand Down

0 comments on commit 5ca5dad

Please sign in to comment.