Add EncType html attribute (#109)
Markus Wüstenberg markus@maragu.dk
Thu, 29 Sep 2022 12:46:36 +0200
2 files changed, 5 insertions(+), 0 deletions(-)
M html/attributes.go → html/attributes.go
@@ -217,3 +217,7 @@ func Width(v string) g.Node { return g.Attr("width", v) } + +func EncType(v string) g.Node { + return g.Attr("enctype", v) +}
M html/attributes_test.go → html/attributes_test.go
@@ -45,6 +45,7 @@ "charset": Charset, "class": Class, "cols": Cols, "content": Content, + "enctype": EncType, "for": For, "form": FormAttr, "height": Height,