commit: a26dcdff36841869f97538b9ccec6e3574fcdebb
parent 66f516565503336bba97ec70dc49b2b2216443a1
Author: Egor Kislitsyn <egor@kislitsyn.com>
Date: Thu, 27 Jun 2019 15:32:29 +0700
Update README
Diffstat:
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git 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]
```