forked from mirror/misskey
1f4ae2f63a
* wip * Update mfm.ts * wip * update mfmjs * refactor * nanka * Update mfm.ts * Update to-html.ts * Update to-html.ts * wip * fix test * fix test
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
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;
|
|
}
|