about summary refs log tree commit diff stats
path: root/svg/attributes_test.go
Commit message (Collapse)AuthorAgeLines
* Remove SVG package (#214)Markus Wüstenberg2024-10-03-29/+0
| | | | | | | | | | | Because the added value of having this was very small, and I don't want to confuse people about what's properly supported, I've removed the SVG package. As #196 showed, there can easily be conflicts between HTML and SVG, and the rendering isn't really set up for anything else than HTML. It's still easy to create SVG elements: `html.SVG` exists in this repo, and the rest is often just a string that can be included using `g.Raw`. Fixes #206
* Add stroke-width SVG attribute (#116)Markus Wüstenberg2022-11-15-6/+7
|
* Mark the assert test helpers as such (#90)Markus Wüstenberg2021-10-06-1/+1
| | | | | Using `t.Helper()`. Also move the assert package to be internal.
* Add svg package and a few helpers (#67)Markus Wüstenberg2021-05-05-0/+28
Introducing SVG, to inline vector graphics in your HTML! 🥳