Make isHtmlTag() case insensitive
Vytautas Ĺ altenis Vytautas.Shaltenis@gmail.com
Sat, 13 Apr 2013 22:34:37 +0300
2 files changed,
4 insertions(+),
1 deletions(-)
M
inline_test.go
→
inline_test.go
@@ -67,6 +67,9 @@ func TestRawHtmlTag(t *testing.T) {
tests := []string{ "zz <style>p {}</style>\n", "<p>zz p {}</p>\n", + + "zz <STYLE>p {}</STYLE>\n", + "<p>zz p {}</p>\n", } doTestsInlineParam(t, tests, 0, HTML_SKIP_STYLE) }