How to configure ckEditor

Hi,

I installed Neos3.3 and the new React-UI.
Now I want to configure the ckeditor, but have no idea where or how I can do this.

Is there any documentation concerning ckEditor configuration?

Regards
Heiko

6 Likes

Hi,
maybe the follow information can help a little bit.
Watch the talk about the Neos React UI given by Sebastian Kurfürst during Neos Conference 2017. Jump directly to minute 28:10 for custom ckeditor style.

I’m interested in customizing too. My first step was adding:

‘Neos.NodeTypes:Text’:
properties:
‘text’:
ui:
aloha:
‘format’:
‘strong’: TRUE
’em’: TRUE
’u’: TRUE
’sub’: TRUE
’sup’: TRUE
’del’: TRUE
’h4’: TRUE
’h5’: TRUE
’pre’: TRUE

to NodeTypes.yaml

Bernd