Add datetime attribute (#177) `<time>`, `<del>` and `<ins>` can receive a [`datetime`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement/dateTime) attribute
Julien Tant 785518+JulienTant@users.noreply.github.com
Fri, 21 Jun 2024 00:24:11 -0700
2 files changed, 5 insertions(+), 0 deletions(-)
M html/attributes.go → html/attributes.go
@@ -28,6 +28,10 @@ func CrossOrigin(v string) g.Node { return g.Attr("crossorigin", v) } +func DateTime(v string) g.Node { + return g.Attr("datetime", v) +} + func Defer() g.Node { return g.Attr("defer") }
M html/attributes_test.go → html/attributes_test.go
@@ -54,6 +54,7 @@ {Name: "cols", Func: Cols}, {Name: "colspan", Func: ColSpan}, {Name: "content", Func: Content}, {Name: "crossorigin", Func: CrossOrigin}, + {Name: "datetime", Func: DateTime}, {Name: "enctype", Func: EncType}, {Name: "dir", Func: Dir}, {Name: "for", Func: For},