fix(goplay): replace quotes
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Simon Vieille 2025-07-28 21:59:23 +02:00
commit 5f51ef354f
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -118,7 +118,7 @@ ${code}
func r(f *form.Form) {
render := theme.NewRenderer(theme.Html5)
tpl, _ := template.New('example').Funcs(render.FuncMap()).Parse(\`{{ form_widget (.Form.GetField "Foo") }}\`)
tpl, _ := template.New("example").Funcs(render.FuncMap()).Parse(\`{{ form_widget (.Form.GetField "Foo") }}\`)
b := new(strings.Builder)
tpl.Execute(b, map[string]any{"Form": f})
fmt.Println(b.String())