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.
 
 
 
Stephen M. Pallen 783b64aaac update elixir verison in travis 7 years ago
config create project and some linker impl 7 years ago
lib prep for first release 7 years ago
test prep for first release 7 years ago
.gitignore create project and some linker impl 7 years ago
.travis.yml update elixir verison in travis 7 years ago
LICENSE prep for first release 7 years ago
README.md add link to docs 7 years ago
mix.exs fix package 7 years ago
mix.lock prep for first release 7 years ago

README.md

AutoLinker

Build Status Hex Version License

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

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

Usage

iex> AutoLinker.link("google.com")
"<a href='http://google.com' class='auto-linker' target='_blank' rel='noopener noreferrer'>google.com</a>"

iex> AutoLinker.link("google.com", new_window: false, rel: false)
"<a href='http://google.com' class='auto-linker'>google.com</a>"

iex> AutoLinker.link("google.com", new_window: false, rel: false, class: false)
"<a href='http://google.com'>google.com</a>"

See the Docs for more examples

License

auto_linker is Copyright (c) 2017 E-MetroTel

The source is released under the MIT License.

Check LICENSE for more information.