EDITOR 1 - STANDARD TOOLBAR
CKEDITOR.replace( 'standard' );
This is text meant to be highlighted
EDITOR 2 - SHARED INLINE TOOLBAR
CKEDITOR.inline( 'shared', {
extraPlugins: 'sharedspace',
removePlugins: 'floatingspace,resize',
sharedSpaces: {
top: 'top',
}
});
This is text meant to be highlighted, but is not
EDITOR 3 - FLOATING INLINE TOOLBAR
CKEDITOR.inline( 'floating', {
extraPlugins: 'floatingspace',
removePlugins: 'sharedspace,resize',
});
This text is meant to be highlighted, but is not
EDITOR 4 - DEFAULT INLINE TOOLBAR
CKEDITOR.inline( 'none' );
This text is meant to be highlighted, but is not