HUBDB Resource page

Hi!
I how can I force dowloadable material open to new tab instead of same window?
Now in HubDB there is:

At link there is at the moment public google-drive url-address.

Hi @phtheref,

have you tried to add

target="_blank"

to your link so it looks like this

<a href="{{ row.download_url }}" target="_blank">Download</a>

best,

Anton

This is probably the solution! Just do not forget to prevent security issues when you are using target=“_blank”

So if you use target=“_blank”, add rel=“noopener noreferrer” as well