I want to find the links in text input and turns them into html links in angularjs.Here is my code but its not working. Html
<div class="item item-body" ng-bind-html="{{deal.notification_details}} | linky" >
</div>
controller.js
$scope.deal=[{id:'0',notification_details:'sample description http://www/example.com'}];