Fix Instant View link interpreter matching trailing dots

This commit is contained in:
dangered wolf 2024-03-24 23:56:42 -04:00
parent 7e6c82e0c4
commit bc6542ceb7
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -58,7 +58,7 @@ const formatDate = (date: Date): string => {
}; };
const htmlifyLinks = (input: string): 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 input.replace(urlPattern, url => {
return `<a href="${url}">${url}</a>`; return `<a href="${url}">${url}</a>`;
}); });