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}`; });