You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
autoparagraph "false" is currently not the best naming for what we actually need, so this will be for legacy behaviour but we can deprecate it and add a isLimit or isInlineMode like this...
further we should define who determines the inline mode. Is it the yaml config or the block: false from the Neos.Fusion:Editable?
The text was updated successfully, but these errors were encountered:
mhsdesign
changed the title
FEATURE: Proper inline mode
FEATURE: Proper inline mode (autoparagraph "false")
Jun 29, 2023
Description
CKeditor doesnt offer a "real" inline mode currently ckeditor/ckeditor5#762 but we can improve our implementation by https://stackoverflow.com/questions/48896019/ckeditor5-inline-build-puts-a-p-tag-inside-of-an-h1-tag-how-do-i-disable-this/49130552#49130552
This would fix following issues:
autoparagraph: false
#3532: When you paste text with newlines, they will be turned currently into a bunch of spans but there are no breaks (br
)foo\nbar
-> expectedfoo<br>bar
actualy<span>foo</span><span>bar</span>
<p>foo</p><p>bar</p>
autoparagraph: false
#3532autoparagraph: false
#3532 can be cleaned upthis.editor.neos.contextPath
is not available during plugininit()
#3223 while we are at it (because we need to extend the editor and will do our own construction phase)isLimit
orisInlineMode
like this...block: false
from theNeos.Fusion:Editable
?The text was updated successfully, but these errors were encountered: