forked from mirror/misskey
3a6331693a
* refactor extractCustomEmojisFromMfm() * refactor extract-hashtags * refactor extract-mentions * refactor extract-hashtags * refactor extract-url-from-mfm * refactor extract-mentions
17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
// test is located in test/extract-mentions
|
|
|
|
import * as mfm from 'mfm-js';
|
|
|
|
export function extractMentions(nodes: mfm.MfmNode[]): mfm.MfmMention['props'][] {
|
|
// TODO: 重複を削除
|
|
const mentions = [] as mfm.MfmMention['props'][];
|
|
|
|
mfm.inspect(nodes, (node) => {
|
|
if (node.type === 'mention') {
|
|
mentions.push(node.props);
|
|
}
|
|
});
|
|
|
|
return mentions;
|
|
}
|