SpecialCharactersConfig
interface
The configuration of the special characters feature.
Read more about configuring the special characters feature.
ClassicEditor
.create( editorElement, {
specialCharacters: ... // Special characters feature options.
} )
.then( ... )
.catch( ... );
Properties
-
order : Array<string> | undefined
module:special-characters/specialcharactersconfig~SpecialCharactersConfig#order
The configuration of the special characters category order.
Special characters categories are displayed in the UI in the order in which they were registered. Using the
order
property allows to override this behaviour and enforce specific order. Categories not listed in theorder
property will be displayed in the default order below categories listed in the configuration.ClassicEditor .create( editorElement, { plugins: [ SpecialCharacters, SpecialCharactersEssentials, ... ], specialCharacters: { order: [ 'Text', 'Latin', 'Mathematical', 'Currency', 'Arrows' ] } } ) .then( ... ) .catch( ... );