mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-15 20:54:01 -05:00
8 lines
310 B
JavaScript
8 lines
310 B
JavaScript
|
const urlPlaceholder = 'xxxxxxxxxxxxxxxxxxxxxxx';
|
||
|
|
||
|
export function countableText(inputText) {
|
||
|
return inputText
|
||
|
.replace(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g, urlPlaceholder)
|
||
|
.replace(/(?:^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+)/ig, '@$2');
|
||
|
};
|