Interface

CodeBlockLanguageDefinition (code-block)

@ckeditor/ckeditor5-code-block/src/codeblockconfig

interface

The code block language descriptor. See languages to learn more.

{
	language: 'javascript',
	label: 'JavaScript'
}

Filtering

Properties

  • class : string | undefined

    The CSS class associated with the language. When not specified the language

    • property is used to create a class prefixed by "language-".
  • label : string

    The human–readable label associated with the language and displayed in the UI.

  • language : string

    The name of the language that will be stored in the model attribute. Also, when class is not specified, it will be used to create the CSS class associated with the language (prefixed by "language-").