From 32ad318ce8e77ae55e5cf68f9217271fb719333c Mon Sep 17 00:00:00 2001 From: Markus Wüstenberg Date: Thu, 29 Sep 2022 12:46:36 +0200 Subject: Add EncType html attribute (#109) --- html/attributes.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'html/attributes.go') diff --git a/html/attributes.go b/html/attributes.go index 5a3dc3a..7733457 100644 --- a/html/attributes.go +++ b/html/attributes.go @@ -217,3 +217,7 @@ func Value(v string) g.Node { func Width(v string) g.Node { return g.Attr("width", v) } + +func EncType(v string) g.Node { + return g.Attr("enctype", v) +} -- cgit 1.4.1