mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 13:34:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			472 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			472 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /*
 | |
|  * SPDX-FileCopyrightText: syuilo and misskey-project
 | |
|  * SPDX-License-Identifier: AGPL-3.0-only
 | |
|  */
 | |
| 
 | |
| // test is located in test/extract-mentions
 | |
| 
 | |
| import * as mfm from '@transfem-org/sfm-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;
 | |
| }
 |