blob: a159bf902d53004230cc2e9bedfd5945a75a2317 (
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 = '<p>.</p>';
return html;
}
|