about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--html/attributes.go4
-rw-r--r--html/attributes_test.go1
2 files changed, 5 insertions, 0 deletions
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)
+}
diff --git a/html/attributes_test.go b/html/attributes_test.go
index 665dc94..50f0b53 100644
--- a/html/attributes_test.go
+++ b/html/attributes_test.go
@@ -45,6 +45,7 @@ func TestSimpleAttributes(t *testing.T) {
 		"class":        Class,
 		"cols":         Cols,
 		"content":      Content,
+		"enctype":      EncType,
 		"for":          For,
 		"form":         FormAttr,
 		"height":       Height,