From a26dcdff36841869f97538b9ccec6e3574fcdebb Mon Sep 17 00:00:00 2001 From: Egor Kislitsyn Date: Thu, 27 Jun 2019 15:32:29 +0700 Subject: [PATCH] Update README --- README.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/README.md b/README.md index 907565f..de7c8fc 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ # Linkify -Linkify is a basic package for turning website names, and phone numbers into links. +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. -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`: @@ -37,13 +35,6 @@ iex> Linkify.link("google.com", new_window: true, rel: "noopener noreferrer") 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] ```