Go to file
FloatingGhost 2567e2c107 add bare whitespace test 2021-12-30 19:46:42 +00:00
lib Fix hashtag parsing at the end of lines 2021-12-30 19:41:30 +00:00
priv priv/tlds.txt: Bump to 2020111900 2020-11-19 23:19:13 +01:00
test add bare whitespace test 2021-12-30 19:46:42 +00: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
CHANGELOG.md Fix parsing error on URLs ending in ) with no path separator. e.g., http://example.com) 2021-07-07 16:52:16 -05:00
LICENSE prep for first release 2017-03-29 16:27:13 -04:00
README.md Add example to README showing how we link user mentions 2020-11-17 15:45:38 +00:00
mix.exs Bump version 2021-12-30 19:42:50 +00:00
mix.lock Update ex_doc 2020-11-17 18:41:43 +04:00

README.md

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.3"}]
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>"

iex> Linkify.link("Hello @niceguy17@pleroma.com", mention: true, mention_prefix: "/users/")
"Hello <a href=\"/users/niceguy17@pleroma.com\">@niceguy17@pleroma.com</a>"

See the Docs for more examples

Acknowledgments

This is a fork of auto_linker by Steve Pallen.

License

Copyright © 2017 E-MetroTel

Copyright © 2019-2020 Pleroma Authors

The source is released under the MIT License.

Check LICENSE for more information.