Hi everyone,
I create some PDF with HTML using a Power Automate flow, in the html i have some images with links. They work fine but i want the link to open in a new tab. I tried using rel='noopener noreferrer' target = '_blank' but it does not work for me. Is there a way to achieve that? This is the code:
<a href='" & link & "' rel='noopener noreferrer' target = '_blank' ><img src=" & image & " style='width: 60px; height: 60px;'></a>
Thanks!