I have HTML in a string coming from the server:
str = '<div>The linkL <a href="/en/about">About</a></div>';
This is just an example, I have a really long HTML with a lot of links.
in the template I have this
<div innerHTML="str"></div>
Everything works fine, except that when someone clicks on the link the entire page reloaded, I need routerLink to replace all the <a
tags.
Is it possible? Thanks