Add svg element (#46) Also add `cols` and `rows` attributes. Fixes #43.
Markus Wüstenberg markus@maragu.dk
Mon, 16 Nov 2020 13:03:54 +0100
4 files changed, 15 insertions(+), 0 deletions(-)
M attr/simple.go → attr/simple.go
@@ -20,6 +20,10 @@ func Class(v string) g.Node { return g.Attr("class", v) } +func Cols(v string) g.Node { + return g.Attr("cols", v) +} + func Content(v string) g.Node { return g.Attr("content", v) } @@ -78,6 +82,10 @@ } func Rel(v string) g.Node { return g.Attr("rel", v) +} + +func Rows(v string) g.Node { + return g.Attr("rows", v) } func Src(v string) g.Node {
M attr/simple_test.go → attr/simple_test.go
@@ -15,6 +15,7 @@ "accept": attr.Accept, "autocomplete": attr.AutoComplete, "charset": attr.Charset, "class": attr.Class, + "cols": attr.Cols, "content": attr.Content, "form": attr.Form, "height": attr.Height, @@ -30,6 +31,7 @@ "pattern": attr.Pattern, "preload": attr.Preload, "placeholder": attr.Placeholder, "rel": attr.Rel, + "rows": attr.Rows, "src": attr.Src, "style": attr.Style, "tabindex": attr.TabIndex,
M el/simple.go → el/simple.go
@@ -216,6 +216,10 @@ func Summary(children ...g.Node) g.NodeFunc { return g.El("summary", children...) } +func SVG(children ...g.Node) g.NodeFunc { + return g.El("svg", children...) +} + func Table(children ...g.Node) g.NodeFunc { return g.El("table", children...) }
M el/simple_test.go → el/simple_test.go
@@ -54,6 +54,7 @@ "section": el.Section, "span": el.Span, "style": el.Style, "summary": el.Summary, + "svg": el.SVG, "table": el.Table, "tbody": el.TBody, "td": el.Td,