Add "checked" bool attribute (#136) Fixes #127.
Markus Wüstenberg markus@maragu.dk
Thu, 11 May 2023 11:23:18 +0200
2 files changed, 5 insertions(+), 0 deletions(-)
M html/attributes.go → html/attributes.go
@@ -16,6 +16,10 @@ func AutoPlay() g.Node { return g.Attr("autoplay") } +func Checked() g.Node { + return g.Attr("checked") +} + func Controls() g.Node { return g.Attr("controls") }
M html/attributes_test.go → html/attributes_test.go
@@ -14,6 +14,7 @@ cases := map[string]func() g.Node{ "async": Async, "autofocus": AutoFocus, "autoplay": AutoPlay, + "checked": Checked, "controls": Controls, "defer": Defer, "disabled": Disabled,