mirror of
https://github.com/plankanban/planka.git
synced 2025-12-18 09:13:21 +03:00
8 lines
173 B
JavaScript
8 lines
173 B
JavaScript
|
|
const MENTIONS_REGEX = /@\[(.*?)\]\(.*?\)/g;
|
||
|
|
|
||
|
|
const formatTextWithMentions = (text) => text.replace(MENTIONS_REGEX, '@$1');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
formatTextWithMentions,
|
||
|
|
};
|