Project

General

Profile

Bug #101869

Updated by Georg Tiefenbrunn 8 months ago

I just tried setting @editor.config.toolbar.shouldNotGroupWhenFull = false@ (RTE yaml configuration) but this value is hardcoded in "CKEditor5Migrator::migrateToolbar()":https://github.com/TYPO3/typo3/blob/e613f1f2c391b1ab2e9bd40f93841c07520dd9e7/typo3/sysext/core/Classes/Configuration/CKEditor5Migrator.php#L242C24-L242C40 

 Instead of using the CKeditor *5* setting @editor.config.toolbar.removeItems@ (https://ckeditor.com/docs/ckeditor5/latest/features/toolbar/toolbar.html#extended-toolbar-configuration-format) you have to use CKeditor *4* setting @editor.config.removeButtons@. 

 What about adding an option to disable the CKEditor4 to CKEditor5 migration and simply add the full yaml configuration (except those settings which cant't be defined via yaml like content and UI language) to CKEditor5?

Back