You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

1.4 KiB

Linkify

Linkify is a basic package for turning website names, and phone numbers into links.

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

This is a very early version. Some of the described options are not yet functional.

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

Configuration

By default, link parsing is enabled and phone parsing is disabled.

# enable phone parsing, and disable link parsing
config :linkify, opts: [phone: true, url: false]

License

auto_linker is Copyright (c) 2017 E-MetroTel

The source is released under the MIT License.

Check LICENSE for more information.