summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/misc/get-note-html.ts
blob: 043335a5be7ea11de5c320b2d444ebc1687bb617 (plain)
1
2
3
4
5
6
7
8
9
10
import * as mfm from 'mfm-js';
import { Note } from '@/models/entities/note';
import { toHtml } from '../../../mfm/to-html';

export default function(note: Note) {
	let html = note.text ? toHtml(mfm.parse(note.text), JSON.parse(note.mentionedRemoteUsers)) : null;
	if (html == null) html = '<p>.</p>';

	return html;
}