Slightly better html link regex.
This commit is contained in:
parent
7b41e103e1
commit
a9bfbcae80
|
@ -1,7 +1,7 @@
|
||||||
defmodule Pleroma.Formatter do
|
defmodule Pleroma.Formatter do
|
||||||
alias Pleroma.User
|
alias Pleroma.User
|
||||||
|
|
||||||
@link_regex ~r/https?:\/\/[\w\.\/?=\-#]+[\w]/
|
@link_regex ~r/https?:\/\/[\w\.\/?=\-#%&]+[\w]/
|
||||||
def linkify(text) do
|
def linkify(text) do
|
||||||
Regex.replace(@link_regex, text, "<a href='\\0'>\\0</a>")
|
Regex.replace(@link_regex, text, "<a href='\\0'>\\0</a>")
|
||||||
end
|
end
|
||||||
|
|
|
@ -6,9 +6,9 @@ defmodule Pleroma.FormatterTest do
|
||||||
|
|
||||||
describe ".linkify" do
|
describe ".linkify" do
|
||||||
test "turning urls into links" do
|
test "turning urls into links" do
|
||||||
text = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufFzY."
|
text = "Hey, check out https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla."
|
||||||
|
|
||||||
expected = "Hey, check out <a href='https://www.youtube.com/watch?v=8Zg1-TufFzY'>https://www.youtube.com/watch?v=8Zg1-TufFzY</a>."
|
expected = "Hey, check out <a href='https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla'>https://www.youtube.com/watch?v=8Zg1-TufF%20zY?x=1&y=2#blabla</a>."
|
||||||
|
|
||||||
assert Formatter.linkify(text) == expected
|
assert Formatter.linkify(text) == expected
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue