diff options
Diffstat (limited to 'html/attributes.go')
-rw-r--r-- | html/attributes.go | 4 |
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) } |