Add dir (#176) `dir` is a global attribute that lets you specify whether text is RTL or LTR or if it should be determined by the browser. Documentation: https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/dir
Amr Ojjeh amrojjeh@outlook.com
Wed, 19 Jun 2024 03:40:13 -0500
2 files changed, 5 insertions(+), 0 deletions(-)
M html/attributes.go → html/attributes.go
@@ -270,3 +270,7 @@ func EncType(v string) g.Node { return g.Attr("enctype", v) } + +func Dir(v string) g.Node { + return g.Attr("dir", v) +}
M html/attributes_test.go → html/attributes_test.go
@@ -55,6 +55,7 @@ {Name: "colspan", Func: ColSpan}, {Name: "content", Func: Content}, {Name: "crossorigin", Func: CrossOrigin}, {Name: "enctype", Func: EncType}, + {Name: "dir", Func: Dir}, {Name: "for", Func: For}, {Name: "form", Func: FormAttr}, {Name: "height", Func: Height},