mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 01:50:55 +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 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 input.replace(urlPattern, url => {
|
||||||
return `<a href="${wrapForeignLinks(url)}">${url}</a>`;
|
return `<a href="${wrapForeignLinks(url)}">${url}</a>`;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue