闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
276 B

  1. import { urlRegex } from './url_regex';
  2. const urlPlaceholder = '$2xxxxxxxxxxxxxxxxxxxxxxx';
  3. export function countableText(inputText) {
  4. return inputText
  5. .replace(urlRegex, urlPlaceholder)
  6. .replace(/(^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+[a-z0-9]+)/ig, '$1@$3');
  7. };