- filter in module ngSanitize
Finds links in text input and turns them into html links. Supports http/https/ftp/mailto
and plain email address links.
Requires the ngSanitize
module to be installed.
Usage
In HTML Template Binding
<span ng-bind-html="linky_expression | linky"></span>
In JavaScript
$filter('linky')(text, target, attributes)
Arguments
Param | Type | Details |
---|---|---|
text | string | Input text. |
target | string | Window ( |
attributes (optional) | object function(url) | Add custom attributes to the link element. Can be one of:
|
Returns
string |
Html-linkified and sanitized text. |
Please login to continue.