aboutsummaryrefslogtreecommitdiffstats
path: root/unxhtmlify_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'unxhtmlify_test.go')
-rw-r--r--unxhtmlify_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/unxhtmlify_test.go b/unxhtmlify_test.go
index ac6ab38..9c980a8 100644
--- a/unxhtmlify_test.go
+++ b/unxhtmlify_test.go
@@ -7,6 +7,8 @@ func TestUnxhtmlifyLine(t *testing.T) {
input, expected string
}{
{ "<br />", "<br>" },
+ { "<span>Bender / Flexo</span>", "<span>Bender / Flexo</span>" },
+ { "<img src=\"farnsworth-paradox.jpg\" alt=\"Parabox\"/>", "<img src=\"farnsworth-paradox.jpg\" alt=\"Parabox\">" },
}
for _, c := range tests {