We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The bug is described here: https://github.com/ckeditor/ckeditor5-engine/issues/670.
It's even better visible in http://localhost:8125/ckeditor5-presets/tests/manual/article.html where the content ends with a block quote. In this case, the block quote remains.
This happens because deleteContent() is called without merge: true:
deleteContent()
merge: true
https://github.com/ckeditor/ckeditor5-typing/blob/f26c3ba5a060e4644947b7f3a4097c0b3b06e0e2/src/input.js#L79
The text was updated successfully, but these errors were encountered:
I can see that merge:true is passed in all cases but this... where it's a bug ;D
merge:true
So, I'm going to change the merge option to doNotMerge so by default it will merge (https://github.com/ckeditor/ckeditor5-engine/issues/982).
merge
doNotMerge
Sorry, something went wrong.
All changes, including a test for this issue landed in ckeditor/ckeditor5-engine#983.
ckeditor/ckeditor5-typing@958eeb2
Reinmar
No branches or pull requests
The bug is described here: https://github.com/ckeditor/ckeditor5-engine/issues/670.
It's even better visible in http://localhost:8125/ckeditor5-presets/tests/manual/article.html where the content ends with a block quote. In this case, the block quote remains.
This happens because
deleteContent()
is called withoutmerge: true
:https://github.com/ckeditor/ckeditor5-typing/blob/f26c3ba5a060e4644947b7f3a4097c0b3b06e0e2/src/input.js#L79
The text was updated successfully, but these errors were encountered: