Use HTMLEscapeString (#24) HTMLEscaper is not needed with strings.
Markus Wüstenberg markus@maragu.dk
Fri, 25 Sep 2020 13:39:55 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M gomponents.go → gomponents.go
@@ -133,7 +133,7 @@ // Text creates a text DOM Node that Renders the escaped string t. func Text(t string) NodeFunc { return func() string { - return template.HTMLEscaper(t) + return template.HTMLEscapeString(t) } }