summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/misc/get-note-html.ts
blob: 683860d9cc2be7fa85e9cd21a26b4444e6578380 (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;
}