Adding rel="noopener" to external links

Hello, is it possible to add rel=“noopener” to external links using velo to prevent unsafe origin crosslinks . I’m looking to add this to 17 links to optimize a clients site. Thanks.

I guess you can add it to a text element using the html property.

$w('test').html = `<a href="https://example.com" rel="noreferrer noopener">examplelink</a>`;

But you can’t add it to buttons (you can create your own buttons in a custom element and use it there).