Fix hardbreak formatting

zio/stable
renahlee 2023-05-05 16:36:48 -07:00
parent b3b1fa1707
commit 2f61fc31fd
1 changed files with 2 additions and 0 deletions

View File

@ -140,6 +140,8 @@ function editorJsonToText(json: JSONContent): string {
}
}
text += '\n'
} else if (json.type === 'hardBreak') {
text += '\n'
} else if (json.type === 'text') {
text += json.text || ''
} else if (json.type === 'mention') {