Add svg element (#46) Also add `cols` and `rows` attributes. Fixes #43.
1 file changed, 4 insertions(+), 0 deletions(-)
changed files
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...) }