Add loading and srcset HTML attributes (#86) Useful for `img` and `picture` elements. Fixes #85. Co-authored-by: Josep Jesus Bigorra Algaba <josep@prowarehouse.nl>
Josep Jesus Bigorra Algaba 42377845+averageflow@users.noreply.github.com
Tue, 07 Sep 2021 12:09:57 +0200
2 files changed, 10 insertions(+), 0 deletions(-)
M html/attributes.go → html/attributes.go
@@ -126,6 +126,10 @@ func Lang(v string) g.Node { return g.Attr("lang", v) } +func Loading(v string) g.Node { + return g.Attr("loading", v) +} + func Max(v string) g.Node { return g.Attr("max", v) } @@ -180,6 +184,10 @@ } func Src(v string) g.Node { return g.Attr("src", v) +} + +func SrcSet(v string) g.Node { + return g.Attr("srcset", v) } func StyleAttr(v string) g.Node {
M html/attributes_test.go → html/attributes_test.go
@@ -51,6 +51,7 @@ "height": Height, "href": Href, "id": ID, "lang": Lang, + "loading": Loading, "max": Max, "maxlength": MaxLength, "method": Method, @@ -65,6 +66,7 @@ "rel": Rel, "role": Role, "rows": Rows, "src": Src, + "srcset": SrcSet, "style": StyleAttr, "tabindex": TabIndex, "target": Target,