all repos — gomponents @ 0368e39c137c7f1ab37c84c0787fd6cc9da0c34b

HTML components in pure Go

Add 'download' and 'referrerpolicy' attributes for anchor <a> element (#242) Hello, A patch to add [`download`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download) and [`referrerpolicy`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy) for the anchor `<a>` element.

Stéphane Legrand
commit

0368e39c137c7f1ab37c84c0787fd6cc9da0c34b

parent

ceb0e8e26d0c0b2e96952176702efa442af55008

1 file changed, 2 insertions(+), 0 deletions(-)

changed files
M html/attributes_test.gohtml/attributes_test.go
@@ -60,6 +60,7 @@ {Name: "datetime", Func: DateTime},
{Name: "draggable", Func: Draggable}, {Name: "enctype", Func: EncType}, {Name: "dir", Func: Dir}, + {Name: "download", Func: Download}, {Name: "for", Func: For}, {Name: "form", Func: FormAttr}, {Name: "formaction", Func: FormAction},
@@ -87,6 +88,7 @@ {Name: "popovertarget", Func: PopoverTarget},
{Name: "popovertargetaction", Func: PopoverTargetAction}, {Name: "poster", Func: Poster}, {Name: "preload", Func: Preload}, + {Name: "referrerpolicy", Func: ReferrerPolicy}, {Name: "rel", Func: Rel}, {Name: "role", Func: Role}, {Name: "rows", Func: Rows},