I want to find the solution for bind html in string example my string inside:
Hello this is text
<a href="#">Kristoff</a>this is my domainwww.website.com
Currently used: ng-bind-html="text | linky:'_blank' |
but I wanted result like this
<a href="#">Kristoff</a> to Kristoff that bind href and www.website.com already bind by Angularjs
What I want only bind href only.
$sce.trustAsHtml<a href="#">Kristoff</a>? ...