improve MFM to html

This commit is contained in:
tamaina 2018-08-18 11:36:43 +09:00 committed by Aya Morisawa
parent cad8e4dea2
commit c0fbcee38a

View file

@ -80,12 +80,12 @@ const handlers: { [key: string]: (window: any, token: any, mentionedRemoteUsers:
},
text({ document }, { content }) {
for (const text of content.split('\n')) {
const node = document.createTextNode(text);
document.body.appendChild(node);
const br = document.createElement('br');
document.body.appendChild(br);
const t = content.split('\n')
for (let i = 0; i < t.length; i++) {
document.body.appendChild(document.createTextNode(t[i]));
if (i != t.length - 1) {
document.body.appendChild(document.createElement('br'));
}
}
},