# 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`: ```elixir def deps do [{:linkify, "~> 0.1"}] end ``` ## Usage The following examples illustrate some examples on how to use the auto linker. ```iex iex> Linkify.link("google.com") "google.com" iex> Linkify.link("google.com", new_window: false, rel: false) "google.com" iex> Linkify.link("google.com", new_window: false, rel: false, class: false) "google.com" iex> Linkify.link("call me at x9999", phone: true) "call me at x9999" iex> Linkify.link("or at home on 555.555.5555", phone: true) "or at home on 555.555.5555" iex> Linkify.link(", work (555) 555-5555", phone: true) ", work (555) 555-5555" ``` See the [Docs](https://hexdocs.pm/linkify/) for more examples ## Configuration By default, link parsing is enabled and phone parsing is disabled. ```elixir # 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](LICENSE) for more information.