From f99f9048cdac42509fbbc1f97e2af32fa3bffca6 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 6 Dec 2016 23:40:33 +0000 Subject: linkify: implement Markdown link compatibility (again) Although unescaped parentheses in URLs are technically allowed, they are uncommon. However, Markdown-like syntaxes are unfortunately common for URLs, so we might as well support them. This fixes parentheses detection at sentence endings, as seen in practice on emails. --- t/linkify.t | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 't') diff --git a/t/linkify.t b/t/linkify.t index 49cbbd64..99acf17d 100644 --- a/t/linkify.t +++ b/t/linkify.t @@ -57,4 +57,26 @@ use PublicInbox::Linkify; is($s, qq(hello $u world), "root + fragment"); } +# Markdown compatibility +{ + my $l = PublicInbox::Linkify->new; + my $u = 'http://example.com/'; + my $s = "[markdown]($u)"; + $s = $l->linkify_1($s); + $s = $l->linkify_2($s); + is($s, qq![markdown]($u)!, 'Markdown-compatible'); + + $s = qq![markdown]($u "title")!; + $s = $l->linkify_1($s); + $s = $l->linkify_2($s); + is($s, qq![markdown]($u "title")!, + 'Markdown title compatible'); + + $s = qq![markdown]($u).!; + $s = $l->linkify_1($s); + $s = $l->linkify_2($s); + is($s, qq![markdown]($u).!, + 'Markdown-compatible end of sentence'); +} + done_testing(); -- cgit v1.2.3-24-ge0c7