HTML generation DSL for Go
Go to file
2019-05-29 22:26:36 -06:00
attribute Added comma-delimited string attrib type 2019-05-29 22:26:36 -06:00
element Allow custom function comments in specs 2019-05-14 21:15:18 -06:00
internal/codegen Added comma-delimited string attrib type 2019-05-29 22:26:36 -06:00
.gitlab-ci.yml Check more stuff in CI 2019-04-17 21:06:01 -06:00
benchmark_test.go Benchmark against html/template 2019-05-11 20:37:40 -06:00
CHANGELOG.md Added comma-delimited string attrib type 2019-05-29 22:26:36 -06:00
ci_check Check more stuff in CI 2019-04-17 21:06:01 -06:00
COPYING Added license and readme 2019-04-17 22:32:53 -06:00
defs.json Added comma-delimited string attrib type 2019-05-29 22:26:36 -06:00
go.mod Escape entities in Text and Attrib 2019-04-28 22:03:39 -06:00
go.sum Escape entities in Text and Attrib 2019-04-28 22:03:39 -06:00
hatmill_test.go Added RawText type 2019-05-27 22:34:01 -06:00
hatmill.go Added RawText type 2019-05-27 22:34:01 -06:00
README.md Benchmark against html/template 2019-05-11 20:37:40 -06:00

hatmill - HTML generation DSL for Go

License Gitlab pipeline status Go Report Card GoDoc Badge count

hatmill provides a simple set of types and helper functions for writing HTML in plain Go code, without having to deal with any template languages. It is not spectacularly performant, but is comparable to the html/template package (at least in simple cases; run go test -bench=. -benchmem for proof). hatmill “templates” are arguably easier to read and write than many template languages.

Installation

There are three necessary packages:

  • gitlab.codemonkeysoftware.net/b/hatmill
  • gitlab.codemonkeysoftware.net/b/hatmill/attribute
  • gitlab.codemonkeysoftware.net/b/hatmill/element

Install them as you would any other Go package, with go get or whatever. gitlab.codemonkeysoftware.net/b/hatmill is a Go module and so will play nicely with Go ≥ 1.11.

Usage

Basic types are in gitlab.codemonkeysoftware.net/b/hatmill. The attribute and element subpackages contain helper functions for HTML5 attributes and elements. See the Example function in hatmill_test.go.

Hacking

If there is a missing attribute or element helper function, describe it in defs.json and run go generate in the repository root. If you can't figure out what you need to know by reading defs.json, internal/codegen/*, attribute/*, and element/*, then pester me to improve the documentation.