Verify trailing periods as sentence punctuation do not link

This commit is contained in:
Mark Felder 2020-11-18 17:40:10 +00:00
parent 1f8680f4b4
commit 372879c8d4

View file

@ -667,5 +667,14 @@ defmodule LinkifyTest do
assert Linkify.link(text) == expected
end
test "Does not link trailing punctuation" do
text = "You can find more info at https://pleroma.social."
expected =
"You can find more info at <a href=\"https://pleroma.social\">https://pleroma.social</a>."
assert Linkify.link(text) == expected
end
end
end