1
0
forked from mirror/misskey
mi.moris.day/src/remote/activitypub/misc/get-note-html.ts

11 lines
296 B
TypeScript
Raw Normal View History

2018-06-18 14:28:43 +09:00
import { INote } from '../../../models/note';
2019-01-30 16:56:27 +09:00
import { toHtml } from '../../../mfm/toHtml';
import { parse } from '../../../mfm/parse';
2018-04-22 10:44:17 +09:00
export default function(note: INote) {
2018-06-17 15:58:23 +09:00
let html = toHtml(parse(note.text), note.mentionedRemoteUsers);
2018-11-04 15:17:52 +09:00
if (html == null) html = '<p>.</p>';
2018-04-22 10:44:17 +09:00
return html;
}