about summary refs log tree commit diff stats
path: root/attr/attributes.go
Commit message (Collapse)AuthorAgeLines
* Introduce Placer interface (#18)Markus Wüstenberg2020-09-24-0/+4
| | | | | When implemented, the `Place` method of the `Placer` interface tells `Render` in `El` where to put a Node. This is relevant for helpers that want to be rendered like attributes, inside the parent element. Fixes the bug where `attr.Classes` was rendered outside the element.
* Make attr.Classes a map type (#14)Markus Wüstenberg2020-09-23-5/+13
| | | This makes the usage syntax prettier. Instead of `attr.Classes(map[string]bool{})`, we can just use `attr.Classes{}`.
* Add package attr with attribute helpers (#7)Markus Wüstenberg2020-09-18-0/+33