Skip to content

Commit

Permalink
Merge pull request #87 from brokentone/test/self-closing-br
Browse files Browse the repository at this point in the history
Add test for a self closing br tag as reported in #80
  • Loading branch information
colinodell committed Feb 3, 2016
2 parents 9a5becc + 39415ae commit 09addeb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/HtmlConverterTest.php
Expand Up @@ -35,6 +35,7 @@ public function test_line_breaks()
$this->html_gives_markdown("test\nanother line", 'test another line');
$this->html_gives_markdown("<p>test\nanother line</p>", 'test another line');
$this->html_gives_markdown('<p>test<br>another line</p>', "test \nanother line");
$this->html_gives_markdown('<p>test<br />another line</p>', "test \nanother line");
}

public function test_headers()
Expand Down

0 comments on commit 09addeb

Please sign in to comment.