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
Egor Kislitsyn cab2bc4452 fix IP
2019-02-05 20:39:35 +07:00
config create project and some linker impl 2017-03-29 10:11:22 -04:00
lib fix IP 2019-02-05 20:39:35 +07:00
priv add TLD validation support 2019-02-05 18:27:58 +07:00
test add TLD validation support 2019-02-05 18:27:58 +07:00
.formatter.exs add formatter 2019-02-05 18:22:51 +07:00
.gitignore create project and some linker impl 2017-03-29 10:11:22 -04: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 add formatter 2019-02-05 18:22:51 +07:00
mix.lock add phone number linking 2017-11-17 13:36:37 -05:00
README.md added support for markdown style links 2018-01-22 19:46:47 -05:00

AutoLinker

Build Status Hex Version License

AutoLinker 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 auto_linker to your list of dependencies in mix.exs:

def deps do
  [{:auto_linker, "~> 0.2"}]
end

Usage

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

iex> AutoLinker.link("google.com") "google.com"

iex> AutoLinker.link("google.com", new_window: false, rel: false) "google.com"

iex> AutoLinker.link("google.com", new_window: false, rel: false, class: false) "google.com"

iex> AutoLinker.link("call me at x9999") ~s{call me at x9999}

iex> AutoLinker.link("or at home on 555.555.5555") ~s{or at home on 555.555.5555}

iex> AutoLinker.link(", work (555) 555-5555") ~s{, work (555) 555-5555}

iex> AutoLinker.link("Google Search", markdown: true) "Google Search"

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 :auto_linker, 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.