Is there any doc on how inline ckeditor shows only relevant toolitems based on the html tag it is attached to.
For example, the inline ckeditor for a <p
> tag hides the Format toolbar and list (bulleted and numbered) tool items but shows indent/outdent tool items.
The ckeditor itself is configured with the following tool items. They are shown for a <div>
but are not all for a <p>
. So there must be some kind of filtering based on the html tags?
config.toolbar = [
{ name: 'styles', items: [ 'Format' ] },
{ name: 'editing', items: [ 'Scayt' ] },
{ name: 'basicstyles', items: [ 'Bold', 'Italic', 'Underline', 'RemoveFormat' ] },
{ name: 'list', items: [ 'NumberedList', 'BulletedList', 'Outdent', 'Indent'] },
{ name: 'paragraph', items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight']}
];