about summary refs log tree commit diff stats
path: root/html/attributes.go
diff options
context:
space:
mode:
Diffstat (limited to 'html/attributes.go')
-rw-r--r--html/attributes.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/html/attributes.go b/html/attributes.go
index fb2748b..e9a0b6d 100644
--- a/html/attributes.go
+++ b/html/attributes.go
@@ -277,6 +277,10 @@ func RowSpan(v string) g.Node {
 	return g.Attr("rowspan", v)
 }
 
+func Scope(v string) g.Node {
+	return g.Attr("scope", v)
+}
+
 func Src(v string) g.Node {
 	return g.Attr("src", v)
 }