mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-03 09:30:56 +01:00
Improve link matching regex for instant view
This commit is contained in:
parent
bfbd102cc3
commit
174cc65782
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ const formatDate = (date: Date, language: string): string => {
|
|||
};
|
||||
|
||||
const htmlifyLinks = (input: string): string => {
|
||||
const urlPattern = /\bhttps?:\/\/[\w.-]+\.\w+[/\w.-]*\w/g;
|
||||
const urlPattern = /\bhttps?:\/\/(\w+(-\w+)*\.)+[a-z]{2,}(:\d+)?(\/[-\w@:%_+.~#?&/=]*)?/gi;
|
||||
return input.replace(urlPattern, url => {
|
||||
return `<a href="${wrapForeignLinks(url)}">${url}</a>`;
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue