[ 'default' => [ 'editor' => [ 'ckeditor4' => [ 'custom_config_options' => [ 'entities' => false, // Disables conversion of characters to HTML entities entirely. Example: Stops converting © into ©, or & into &. 'basicEntities' => false, // Prevents encoding of “basic” characters like &, <, >, ", '. 'entities_latin' => false, // Stops encoding Latin-based special characters (like ñ, é, ç) into HTML entities like ñ or é. 'entities_greek' => false, // Prevents encoding of Greek characters (like α, β, Ω) into α, β, etc. 'htmlEncodeOutput' => false, // Prevents CKEditor from encoding content on output (e.g., when switching between WYSIWYG and source view). 'forceSimpleAmpersand' => true, // Prevents CKEditor from converting & into & unless it’s part of a valid HTML entity. ], ], ], ], ], ];