Deprecate DataAttr, StyleAttr, TitleAttr, FormEl This change addresses #170 by deprecating some HTML helpers in favor of using one of the styles as a main one, selected based on what I think is the main use case. - For `Data`, it's the attribute. I don't see much use of the `<data>` element in the wild. - For `Style`, it's the attribute. The `style` attribute is everywhere, the `<style>` element is perhaps less so (but not much). This was the hardest one to decide. - For `Title`, it's the attribute. The `<title>` element only shows up once per document. - For `Form`, it's the element. I haven't seen much use of the `data` attribute in the wild. I know this is arguably not a "consistent" approach, but I think it makes for a much nicer API, simply because the most-used option will not be a suffixed version.
1 file changed, 5 insertions(+), 0 deletions(-)
changed files
M html/elements.go → html/elements.go
@@ -111,6 +111,11 @@ func Embed(children ...g.Node) g.Node { return g.El("embed", children...) } +func Form(children ...g.Node) g.Node { + return g.El("form", children...) +} + +// Deprecated: Use [Form] instead. func FormEl(children ...g.Node) g.Node { return g.El("form", children...) }