mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
const MENTION_REGEX = /\s@([\w_-]+)/g
|
|
|
|
export function extractSlugs (content) {
|
|
let slugs = []
|
|
let match
|
|
while ((match = MENTION_REGEX.exec(content)) != null) {
|
|
slugs.push(match[1])
|
|
}
|
|
return slugs
|
|
}
|