From bc6542ceb71a811b20a78be7da1239f09fc7fdce Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sun, 24 Mar 2024 23:56:42 -0400 Subject: [PATCH] Fix Instant View link interpreter matching trailing dots --- src/render/instantview.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 15058a2..256a814 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -58,7 +58,7 @@ const formatDate = (date: Date): string => { }; const htmlifyLinks = (input: string): string => { - const urlPattern = /\bhttps?:\/\/\S+/g; + const urlPattern = /\bhttps?:\/\/[\w.-]+\.\w+[/\w.-]*\w/g; return input.replace(urlPattern, url => { return `${url}`; });