Add LinkStylesheet and LinkPreload components (#79) These are often used in the `<head>` part of the HTML.
1 file changed, 4 insertions(+), 0 deletions(-)
changed files
M html/attributes.go → html/attributes.go
@@ -61,6 +61,10 @@ func Aria(name, v string) g.Node { return g.Attr("aria-"+name, v) } +func As(v string) g.Node { + return g.Attr("as", v) +} + func AutoComplete(v string) g.Node { return g.Attr("autocomplete", v) }