Sign up (with export icon)

SpecialCharactersConfig

Api-interface icon 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( ... );
Copy code

See all editor configuration options.

Properties

  • Chevron-right icon

    order : Array<string> | undefined

    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 the order 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( ... );
    
    Copy code