I'm using the following configuration and it works well even in news:
FullAndImage.yaml
# Load default processing options
imports:
# Import default RTE config (for example)
- { resource: "EXT:rte_ckeditor/Configuration/RTE/Full.yaml" }
# Import the image plugin configuration
- { resource: "EXT:rte_ckeditor_image/Configuration/RTE/Plugin.yaml" }
# Add configuration for the editor
# For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config
editor:
config:
removePlugins: null
externalPlugins:
typo3image:
allowedExtensions: "gif,jpg,jpeg,png,svg"
in ext_localconf.php:
$GLOBALS['TYPO3_CONF_VARS']['RTE']['Presets']['default'] = 'EXT:my_extension/Configuration/RTE/FullAndImage.yaml';
I never configured CKEditor especially for news
.
EDIT:
Still one tip: if you upgraded TYPO3 and still have PageTS for the old editor rte_htmlarea
then it's the best just to delete the old configuration. It's able to mess some things up in the new editor rte_ckeditor
. I don't know if someone verified which old parameters are disturbing or have which impact in the new editor, therefore just deleting of old configuration is the simplest solution.