Add new MFM animation

This commit is contained in:
syuilo 2020-11-02 15:16:37 +09:00
parent 666c8c0498
commit 09cab605fc
5 changed files with 33 additions and 0 deletions

View file

@ -48,6 +48,10 @@ export function toString(tokens: MfmForest | null, opts?: RestoreOptions): strin
return `<jump>${appendChildren(token.children, opts)}</jump>`;
},
twitch(token, opts) {
return `<twitch>${appendChildren(token.children, opts)}</twitch>`;
},
flip(token, opts) {
return `<flip>${appendChildren(token.children, opts)}</flip>`;
},