update mfm-js

This commit is contained in:
syuilo
2023-01-14 09:02:33 +09:00
parent 367ccb9971
commit 68e65ed5df
4 changed files with 9 additions and 9 deletions

View File

@ -43,7 +43,7 @@ export default defineComponent({
render() {
if (this.text == null || this.text === '') return;
const ast = (this.plain ? mfm.parseSimple : mfm.parse)(this.text, { fnNameList: MFM_TAGS });
const ast = (this.plain ? mfm.parseSimple : mfm.parse)(this.text);
const validTime = (t: string | null | undefined) => {
if (t == null) return null;