Linkify urls in strings, safely
npm install ember-linkifyLinkify URLs in an Ember app with a helper that uses a tested
url-regex and Handlebars Utils.escapeExpression
to ensure links are safe.
Installation
------------------------------------------------------------------------------
```
ember install ember-linkify
`hbs`
{{linkify post.description}}
`hbs`
{{linkify commentText}}
##### Use the helper with a raw string
`hbs`
{{linkify 'Here is a link: https://google.com and some attempted XSS '}}
{{! => 'Here is a link: https://google.com and some attempted XSS <script>alert("xss!");</script>'}}
##### Or with a variable bound to an input
`hbs`
{{textarea value=text placeholder='Enter some text with a url'}}
{{linkify text}}
##### You can specify options to the helper such as 'urlLength' which shortens the URL by 'urlLength' and add 3 dots to the end
`hbs`
{{linkify text urlLength=30}}
##### The 'defaultScheme' option specifies a scheme to use for URLs that don’t already have one.
For instance, the following will ensure that the https scheme is used for the created link:
`hbs`
{{linkify 'Link without a scheme: www.foo.com' defaultScheme='https'}}
##### Also use options to specify attributes you want to add to the generated anchor tags. Currently, "target", "rel" and "class" are the only recognized attributes.
`hbs`
{{linkify text target='_blank' rel='nofollow' class='external-link'}}
* git clone this repositorycd my-addon
* npm install
*
* ember server
* Visit your app at http://localhost:4200.
* ember testember test --server
* ember try:each
* – Runs the test suite against multiple Ember versions
* ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
MIT
1. Fork it
2. Create your feature branch (git checkout -b my-new-feature)git commit -am 'Add some feature'
3. Commit your changes ()git push origin my-new-feature`)
4. Push to the branch (
5. Create new Pull Request
*
> Crafted with <3 by John Otander(@4lpine).