mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix Instant View link interpreter matching trailing dots
This commit is contained in:
parent
7e6c82e0c4
commit
bc6542ceb7
1 changed files with 1 additions and 1 deletions
|
@ -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>`;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue