about summary refs log tree commit diff stats
path: root/attr/simple.go
diff options
context:
space:
mode:
Diffstat (limited to 'attr/simple.go')
-rw-r--r--attr/simple.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/attr/simple.go b/attr/simple.go
index e286c26..d7d4ab8 100644
--- a/attr/simple.go
+++ b/attr/simple.go
@@ -12,10 +12,18 @@ func AutoComplete(v string) g.Node {
 	return g.Attr("autocomplete", v)
 }
 
+func Charset(v string) g.Node {
+	return g.Attr("charset", v)
+}
+
 func Class(v string) g.Node {
 	return g.Attr("class", v)
 }
 
+func Content(v string) g.Node {
+	return g.Attr("content", v)
+}
+
 func Form(v string) g.Node {
 	return g.Attr("form", v)
 }