☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

_editables

Table of contents

Description:

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.

contentObject#

This key defines input options for the Content Editor.

imageObject#

This key defines input options for image Editable Regions.

textObject#

This key defines input options for text Editable Regions.

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