improve MFM to html
This commit is contained in:
parent
cad8e4dea2
commit
c0fbcee38a
|
@ -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'));
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue