blob: 967ee655440ea5913833620277e684349dccf29a (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { INote } from '../../../models/note';
import { toHtml } from '../../../mfm/toHtml';
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;
}
|