Use HTMLEscapeString in Textf (#27)
Markus Wüstenberg markus@maragu.dk
Wed, 21 Oct 2020 21:59:52 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M gomponents.go → gomponents.go
@@ -140,7 +140,7 @@ // Textf creates a text DOM Node that Renders the interpolated and escaped string t. func Textf(format string, a ...interface{}) NodeFunc { return func() string { - return template.HTMLEscaper(fmt.Sprintf(format, a...)) + return template.HTMLEscapeString(fmt.Sprintf(format, a...)) } }