Add package docs (#41) Also update readme with features.
Markus Wüstenberg markus@maragu.dk
Mon, 02 Nov 2020 11:05:23 +0100
3 files changed, 12 insertions(+), 0 deletions(-)
M README.md → README.md
@@ -13,6 +13,16 @@ Check out the blog post [gomponents: declarative view components in Go](https://www.maragu.dk/blog/gomponents-declarative-view-components-in-go/) for background. +## Features + +- Write declarative HTML in Go without all the strings, so you get + - Type safety + - Auto-completion + - Nice formatting with `gofmt` +- Simple API that's easy to learn and use +- Build reusable view components +- No external dependencies + ## Usage Get the library using `go get`:
M assert/assert.go → assert/assert.go
@@ -1,3 +1,4 @@+// Package assert provides testing helpers. package assert import (
M components/documents.go → components/documents.go
@@ -1,3 +1,4 @@+// Package components provides high-level components that are composed of low-level elements and attributes. package components import (