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.
 
 
 
Gustavo Adolfo Mesa Roldán 07fca6c6e2 youtube 4 years ago
lib youtube 4 years ago
priv add TLD validation support 5 years ago
test Disable `strip_prefix` by default 4 years ago
.formatter.exs add formatter 5 years ago
.gitignore Small fixes and improvements 5 years ago
.gitlab-ci.yml Bump Elixir version 4 years ago
.travis.yml update elixir verison in travis 7 years ago
LICENSE prep for first release 7 years ago
README.md Youtubegit add .git add .! 4 years ago
docker-compose.yml pruebas 4 years ago
linkify-0.1.1.tar ss 4 years ago
mix.exs Bump version 4 years ago
mix.lock Youtubegit add .git add .! 4 years ago

README.md

Linkify

Linkify.link("https://www.youtube.com/watch?v=YNPvBU43oYg", %{youtube: true, url: false})

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.

Installation

The package can be installed by adding linkify to your list of dependencies in mix.exs:

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

Usage

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


iex> Linkify.link("google.com")
"<a href=\"http://google.com\">google.com</a>"

iex> Linkify.link("google.com", class: "linkified")
"<a href=\"http://google.com\" class=\"linkified\">google.com</a>"

iex> Linkify.link("google.com", new_window: true)
"<a href=\"http://google.com\" target=\"_blank\">google.com</a>"

iex> Linkify.link("google.com", new_window: true, rel: "noopener noreferrer")
"<a href=\"http://google.com\" target=\"_blank\" rel=\"noopener noreferrer\">google.com</a>"

See the Docs for more examples

Acknowledgements

This is a fork of auto_linker by Steve Pallen.

License

Copyright © 2017 E-MetroTel

Copyright © 2019 Pleroma Authors

The source is released under the MIT License.

Check LICENSE for more information.