Angular filter, directive, and service to linkify text. As of v0.3.0, angular-linkify works for twitter/github mentions, twitter hashtags, and basic urls.
bower install angular-linkify --save
Inject module into your application
angular.module('YourApp', ['linkify']);Use as a AngularJS Filter or AngularJS Directive
<!-- As a filter -->
<div ng-controller="SomeCtrl">
<div ng-bind-html-unsave="someValue | linkify"></div> <!-- linkified!! -->
</div>
<!-- As a filter, with twitter parsing -->
<div ng-controller="SomeCtrl">
<div ng-bind-html-unsave="someValue | linkify:'twitter'"></div> <!-- linkified!! -->
</div>
<!-- As a directive, no twitter -->
<div ng-bind="someModel" linkify></div>
<!-- As a directive, with twitter parsing -->
<div ng-bind="someModel" linkify="twitter"></div>Inject as a AngularJS Service
// Injected into controller
angular.module('someModule').controller('SomeCtrl', function ($scope, linkify) {
var text = "@scottcorgan and http://github.com";
// Twitter
$scope.text = linkify.twitter(text);
// outputs: <a href="https://twitter.com/scottcorgan" target="_blank">scottcorgan</a> and <a href="http://github.com" target="_blank">http://github.com</a>
// Github
$scope.text = linkify.github(text);
// outputs: <a href="https://github.com/scottcorgan" target="_blank">scottcorgan</a> and <a href="http://github.com" target="_blank">http://github.com</a>
});grunt