all repos — gomponents @ c899a050c06733965dae8ea686daab36e187ba45

HTML components in pure Go

Return Node from all helpers instead of NodeFunc (#62) This makes it clearer that the helpers return a `Node` of any kind, and that the type is not important. This also streamlines the API, as attribute helpers already return just `Node`.

Markus Wüstenberg
commit

c899a050c06733965dae8ea686daab36e187ba45

parent

d41c4e5a85362dec7844a9093b43720eb0e70e72

1 file changed, 1 insertion(+), 1 deletion(-)

changed files
M components/documents.gocomponents/documents.go
@@ -17,7 +17,7 @@ Body []g.Node
} // HTML5 document template. -func HTML5(p HTML5Props) g.NodeFunc { +func HTML5(p HTML5Props) g.Node { var lang, description g.Node if p.Language != "" { lang = Lang(p.Language)