From febffb600db7fbfd81827ded1b8fa3774bf42107 Mon Sep 17 00:00:00 2001 From: Markus Wüstenberg Date: Thu, 10 Dec 2020 14:20:33 +0100 Subject: Simplify available elements (#55) `a`, `form`, `img`, `input`, `label`, `option`, `progress`, `select`, and `textarea` are now just regular elements (without helper parameters), because: - Sometimes the use case doesn't fit (`a` as anchor without href, for example) - There's no reason these are special among the others, so streamlining them makes sense Also added new attributes `action`, `alt`, `for`, `method` that I had somehow missed.--- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 5a8a954..31f0101 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ func Navbar(currentPath string) g.Node { } func NavbarLink(href, name, currentPath string) g.Node { - return A(href, c.Classes{"is-active": currentPath == href}, g.Text(name)) + return A(Href(href), c.Classes{"is-active": currentPath == href}, g.Text(name)) } ``` @@ -129,7 +129,7 @@ func Navbar(currentPath string) g.Node { } func NavbarLink(href, name, currentPath string) g.Node { - return A(href, c.Classes{"is-active": currentPath == href}, g.Text(name)) + return A(Href(href), c.Classes{"is-active": currentPath == href}, g.Text(name)) } ``` -- cgit 1.4.1