Interface

DataSchemaBlockElementDefinition (html-support)

@ckeditor/ckeditor5-html-support/src/dataschema

interface

A definition of data schema for block elements.

Filtering

Properties

  • inherited

    isBlock : boolean | undefined

    Indicates that the definition describes block element. Set by registerBlockElement method.

  • inherited

    isInline : boolean | undefined

    Indicates that the definition describes inline element.

  • inherited

    isObject : boolean | undefined

    Indicates that the definition describes object element.

  • inherited

    model : string

    Name of the model.

  • inherited

    modelSchema : SchemaItemDefinition | undefined

    The model schema item definition describing registered model.

  • paragraphLikeModel : string | undefined

    Should be used when an element can behave both as a sectioning element (e.g. article) and element accepting only inline content (e.g. paragraph). If an element contains only inline content, this option will be used as a model name.

  • inherited

    view : string | undefined

    Name of the view element.