summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/misc/get-note-html.ts
blob: 0a607bd48c71a035fd0295001a2c00e68f1b8f13 (plain)
1
2
3
4
5
6
7
8
9
10
import { INote } from '../../../models/note';
import toHtml from '../../../mfm/html';
import parse from '../../../mfm/parse';

export default function(note: INote) {
	let html = toHtml(parse(note.text), note.mentionedRemoteUsers);
	if (html == null) html = '';

	return html;
}