Merge pull request #772 from kfirba/patch-1

Fix an issue with with parsing custom extensions
This commit is contained in:
Hans Pagel 2020-07-28 20:11:07 +02:00 committed by GitHub
commit 8fb8b0de9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -274,7 +274,7 @@ export default class Editor extends Emitter {
if (typeof content === 'string') {
const htmlString = `<div>${content}</div>`
const parser = new window.DOMParser()
const element = parser.parseFromString(htmlString, 'text/html').body
const element = parser.parseFromString(htmlString, 'text/html').body.firstElementChild
return DOMParser.fromSchema(this.schema).parse(element, parseOptions)
}