I integrate the latest version of the CKEditor 4 Standard Version (v4.15 at the time of writing) via this link:
https://cdn.jsdelivr.net/npm/ckeditor4/ckeditor.js
By definition, the CKEditor 4 Standard Version does NOT include the "Justify" plugin, which is responsible for aligning text (left, right, center, justify) - at least to my understanding – according to the presets:
https://ckeditor.com/cke4/builder
And indeed, if I configure my setup with align rules, CKEditor won't recognise them:
CKEDITOR.toolbar = [
[ 'Undo', 'Redo' ],
[ 'Link', 'Unlink', 'Anchor' ],
[ 'JustifyLeft', 'JustifyCenter', 'JustifyRight' ], // <= not recognised
[ 'Bold', 'Italic', 'Underline', 'Strike' ],
[ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote' ],
'/',
[ 'SpecialChar' ],
[ 'Source', '-', 'RemoveFormat' ],
[ 'About' ]
]
However, as soon as I enable "justify" in the "extraPlugins" config option:
CKEDITOR.extraPlugins = "divarea,justify"
the align options mentioned above ARE recognised and work perfectly fine (even though, as already mentioned, the CKEDITOR 4 Standard Version Preset does not implement that very plugin).
I know that there is a "stylecombo" plugin, but that one is activated by default and seems not to be able to recognise the align features by itself.
In my opinion, the "justify" plugin should not work, throw an error and ignore any alignment configurations. But that's not the case...
On the other hand, when I try to include "Superscript" and "Subscript"
[ 'Bold', 'Italic', 'Underline', 'Strike', 'Superscript', 'Subscript' ],
which should be supported by the "basicstyles" plugin, they are NOT recognised. Here I was assuming that these button would be displayed in the editor.
Can anybody help me find out, what I am misunderstanding here, please? Thank you!