Recent searches

in

_editables

On this page

This key defines which Rich Text editors have custom configuration for the associated WYSIWYG toolbar.

For more information, please read our documentation on Rich Text editors.

Appears in

├── collections_config
│   └── *
│       ├── schemas
│       │   └── *
│       │       └── _editables
│       └── _editables
└── file_config
    └── [*]
        └── _editables

Type

Object

Properties

blockObject#

This key defines input options for block Editable Regions.

Appears in: _editables.

contentObject#

This key defines input options for the Content Editor.

Appears in: _editables.

imageObject#

This key defines input options for image Editable Regions.

Appears in: _editables.

textObject#

This key defines input options for text Editable Regions.

Appears in: _editables.

Examples

In this example, we have configured the Snippet tool for WYSIWYG toolbars in the blog Collection.

Copied to clipboard
collections_config:
  blog:
    _editables:
      content:
        snippet: true
{
  "collections_config": {
    "blog": {
      "_editables": {
        "content": {
          "snippet": true
        }
      }
    }
  }
}
Open in a new tab