mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 06:33:09 +02:00
c2370a1be6
* chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
16 lines
469 B
TypeScript
16 lines
469 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
// test is located in test/extract-mentions
|
|
|
|
import * as mfm from 'mfm-js';
|
|
|
|
export function extractMentions(nodes: mfm.MfmNode[]): mfm.MfmMention['props'][] {
|
|
// TODO: 重複を削除
|
|
const mentionNodes = mfm.extract(nodes, (node) => node.type === 'mention') as mfm.MfmMention[];
|
|
const mentions = mentionNodes.map(x => x.props);
|
|
|
|
return mentions;
|
|
}
|