Extracts hashtags and mentions from text, while allowing to transform the inline representation of the former and also auto-detecting plain-text links to turn them into clickable HTML links Forked from https://git.pleroma.social/pleroma/elixir-libraries/linkify
Find a file
Oneric b8399ccd74 Extend trailing-punctuation heuristic
And fix the regex to _actually_ exclude trailing punctuation
2025-11-19 00:00:00 +00:00
lib Extend trailing-punctuation heuristic 2025-11-19 00:00:00 +00:00
LICENSES Make repository REUSE compliant 2022-07-10 08:47:13 +02:00
priv Update TLDs list 2023-03-17 08:10:06 +03:00
test Extend trailing-punctuation heuristic 2025-11-19 00:00:00 +00:00
.formatter.exs Make repository REUSE compliant 2022-07-10 08:47:13 +02:00
.gitignore Make repository REUSE compliant 2022-07-10 08:47:13 +02:00
.gitlab-ci.yml Make repository REUSE compliant 2022-07-10 08:47:13 +02:00
.travis.yml Make repository REUSE compliant 2022-07-10 08:47:13 +02:00
CHANGELOG.md Changelog 2024-02-04 14:03:22 -05:00
mix.exs Mix.exs: Update version 2023-02-09 14:27:38 -05:00
mix.lock mix: update all deps 2025-11-18 00:00:00 +00:00
mix.lock.license Make repository REUSE compliant 2022-07-10 08:47:13 +02:00
README.md Make repository REUSE compliant 2022-07-10 08:47:13 +02:00

Linkify

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.5"}]
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>"

iex> Linkify.link("Hello @niceguy17@pleroma.com", mention: true, mention_prefix: "/users/")
"Hello <a href=\"/users/niceguy17@pleroma.com\">@niceguy17@pleroma.com</a>"

See the Docs for more examples

Acknowledgments

This is a fork of auto_linker by Steve Pallen.

License

Copyright © 2017-2018 E-MetroTel

Copyright © 2019-2022 Pleroma Authors

SPDX-License-Identifier: MIT AND CC0-1.0

Check REUSE Specification on how to get more information.