all repos — gomponents @ 42433a4a096f50c030479c962b0fe1337fa99c5e

HTML components in pure Go

Use HTMLEscapeString in Textf (#27)

Markus Wüstenberg markus@maragu.dk
Wed, 21 Oct 2020 21:59:52 +0200
commit

42433a4a096f50c030479c962b0fe1337fa99c5e

parent

4448a48d85e15895ce68c3d2b9ca009a222fcd2a

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M gomponents.gogomponents.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...))
 	}
 }