No description
This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2019-06-27 16:10:11 +07:00
lib Do not add class, target and rel attributes by default 2019-06-27 15:32:07 +07:00
priv add TLD validation support 2019-02-05 18:27:58 +07:00
test Do not add class, target and rel attributes by default 2019-06-27 15:32:07 +07:00
.formatter.exs add formatter 2019-02-05 18:22:51 +07:00
.gitignore Small fixes and improvements 2019-02-18 16:49:08 +00:00
.gitlab-ci.yml Bump Elixir version 2019-06-27 16:10:11 +07:00
.travis.yml update elixir verison in travis 2017-03-29 16:56:03 -04:00
LICENSE prep for first release 2017-03-29 16:27:13 -04:00
mix.exs Bump Elixir version 2019-06-27 16:10:11 +07:00
mix.lock Update dependencies 2019-06-24 18:05:01 +07:00
README.md Update copyright info 2019-06-27 15:33:18 +07:00

Linkify

Linkify is a basic package for turning website names into links.

Use this package in your web view to convert web references into click-able links.

Installation

The package can be installed by adding linkify to your list of dependencies in mix.exs:

def deps do
  [{:linkify, "~> 0.1"}]
end

Usage

The following examples illustrate some examples on how to use the auto linker.


iex> Linkify.link("google.com")
"<a href=\"http://google.com\">google.com</a>"

iex> Linkify.link("google.com", class: "linkified")
"<a href=\"http://google.com\" class=\"linkified\">google.com</a>"

iex> Linkify.link("google.com", new_window: true)
"<a href=\"http://google.com\" target=\"_blank\">google.com</a>"

iex> Linkify.link("google.com", new_window: true, rel: "noopener noreferrer")
"<a href=\"http://google.com\" target=\"_blank\" rel=\"noopener noreferrer\">google.com</a>"

See the Docs for more examples

Acknowledgements

This is a fork of auto_linker by Steve Pallen.

License

Copyright © 2017 E-MetroTel Copyright © 2019 Pleroma Authors

The source is released under the MIT License.

Check LICENSE for more information.