Add Textf function (#17) Like Text, but calls fmt.Sprintf before rendering.
Markus Wüstenberg markus@maragu.dk
Wed, 23 Sep 2020 22:10:35 +0200
3 files changed, 15 insertions(+), 1 deletions(-)
M gomponents.go → gomponents.go
@@ -109,6 +109,13 @@ return template.HTMLEscaper(t) } } +// 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...)) + } +} + // Raw creates a raw Node that just Renders the unescaped string t. func Raw(t string) NodeFunc { return func() string {
M gomponents_test.go → gomponents_test.go
@@ -81,6 +81,13 @@ assert.Equal(t, "<div/>", e) }) } +func TestTextf(t *testing.T) { + t.Run("renders interpolated and escaped text", func(t *testing.T) { + e := g.Textf("<%v/>", "div") + assert.Equal(t, "<div/>", e) + }) +} + func TestRaw(t *testing.T) { t.Run("renders raw text", func(t *testing.T) { e := g.Raw("<div/>")