diff options
author | Yarden Shoham | 2024-08-19 13:01:33 +0300 |
---|---|---|
committer | GitHub | 2024-08-19 12:01:33 +0200 |
commit | aade77281e640f52c1ee19d9336493d953bacc2c (patch) | |
tree | 79309bacb7b1fd88eb9208b08226269bddfe6bd4 /html/attributes_test.go | |
parent | 033f6ac3c36da0e95882d2e00b8cdd54468d3050 (diff) | |
download | gomponents-aade77281e640f52c1ee19d9336493d953bacc2c.tar.lz gomponents-aade77281e640f52c1ee19d9336493d953bacc2c.tar.zst gomponents-aade77281e640f52c1ee19d9336493d953bacc2c.zip |
Add `cite` attribute (#192)
It can appear in a `<blockquote>`. - Closes https://github.com/maragudk/gomponents/issues/189 Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Diffstat (limited to 'html/attributes_test.go')
-rw-r--r-- | html/attributes_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/html/attributes_test.go b/html/attributes_test.go index 92ce0d6..3eb0252 100644 --- a/html/attributes_test.go +++ b/html/attributes_test.go @@ -49,6 +49,7 @@ func TestSimpleAttributes(t *testing.T) { {Name: "as", Func: As}, {Name: "autocomplete", Func: AutoComplete}, {Name: "charset", Func: Charset}, + {Name: "cite", Func: CiteAttr}, {Name: "class", Func: Class}, {Name: "cols", Func: Cols}, {Name: "colspan", Func: ColSpan}, |