Editor configuration

Configure the CloudCannon file editors to give your content team the best experience.

Reopen your global configuration file#

In the previous section of this guide, we created our CloudCannon configuration file, cloudcannon.config.yml. The sidebar prompt to create the configuration file has disappeared.

To edit your configuration file further, you can do so manually through the Files tab or by reopening the configuration GUI.

Access the configuration GUI by navigating to the Editing tab, under Site Settings. Click the Edit your global configuration file button.

Markdown WYSIWYG toolbar#

Markdown is used in the Content, Visual, and Data Editors. The Content Editor is a rich text editor for Markdown files. The Visual Editor can edit Markdown files if they are wrapped in an HTML element. Markdown is also used in the Data Editor if you have a rich text area for one of your inputs. To customize your experience using these editors, you should configure your WYSIWYG toolbar.

Let’s go over an example of how you would customize the toolbar. We want to allow our content team to add a table to Markdown files. In our global configuration file, we have complete control over the WYSIWYG toolbar.

You can define the _editables for each editor type in the global configuration file. These sections look like this in the configuration GUI:

A screenshot of the CloudCannon configuration GUI shows the section allowing users to configure the toolbar for each editor.

Select all the editable options you would like in your WYSIWYG toolbar.

When you have created your CloudCannon global configuration file, your _editables will look something like this:

cloudcannon.config.yml
copied
_editables:
  content:
    bold: true
    italic: true
    bulletedlist: true
    numberedlist: true
    image: true
    table: true
    undo: true
    redo: true

As you can see, we have enabled many of the common functions your team would expect in a content editor. But that’s not all! Check out our documentation for many more ways to configure the WYSIWYG toolbar.

Front matter#

Inputs in the front matter are automatically available in the sidebar in the Visual Editor, Content Editor, and the dedicated Data Editor. Your content team will interact with these often, so let’s explicitly configure the front matter.

blog_post.html
copied
---
background: "#ff0000"
hero_content: "Everything you need"
sidebar: true
---

We want team members to have the following inputs for each of these keys:

  • background — color picker
  • hero_content — WYSIWYG Markdown editor
  • sidebar — checkbox

To achieve this, we should add the following to our global configuration file using the configuration GUI:

cloudcannon.config.yml
copied
_inputs:
  background:
    type: color
    comment: Defines the background for the entire page
  hero_content:
    type: markdown
    label: Hero text
  sidebar:
    type: checkbox
    hidden: true

You will also see that we added some other elements to our keys:

  • A comment to describe the function of the input.
  • A label to name the input in the Data Editor.
  • A hidden status to prevent the input from appearing in the Data Editor.

Adding a label and a comment to each input is considered best practice.

We covered inputs in the previous section of our guide, and you can always check out our documentation for customizing your inputs to see more options.

Here’s what our new inputs will look in the Data Editor:

A screenshot of the CloudCannon app shows a blog in the Content Editor with configured inputs from the front matter visible.

If you want to update front matter content in the Visual Editor rather than the Data Editor sidebar, you can set up Visual Data binding. Visual Data binding is an HTML attribute indicating which front matter property populates an HTML element. For example, the HTML class below will open an overlay to edit the title property in the front matter.

homepage.html
copied
<h1 data-cms-bind="#title">{{title}}</h1>

Data files#

Data files are automatically available to update in the Data Editor. The same inputs configuration you used for the front matter will also work on data files.

Markdown engine#

Your Markdown engine will process Markdown into HTML, making it editable. You can use any Markdown engine when building your site; this only covers the Markdown content you edit inside CloudCannon.

CloudCannon supports the CommonMark and Kramdown specifications. These implementations are markdown-it (JavaScript) and kramdown (Ruby). markdown-it is the default Markdown processor in CloudCannon.

Currently, you cannot configure the Markdown engine through the Configuration GUI, however, it is easy to do manually. Navigate to your CloudCannon global configuration file through the Files tab in your navigation sidebar. The configuration file will be in the root of your directory.

Your generator code should look something like this:

cloudcannon.config.yml
copied
generator:
  metadata:
    markdown: markdown-it
    markdown-it:
      html: true
      linkify: true

The default configuration is { html: true } to allow the images with width and height attributes the Rich Text editors create. However, you can update this to match your site by setting the generator.metadata in your global configuration file as shown above.

Visual Editor Previews#

In a previous section of this guide, we talked about the Visual Editor — an intuitive way to edit your site by clicking directly on a preview of your page. But how do you make each region editable in the Visual Editor?

Bookshop#

Bookshop is our open-source tool to automate maintaining page components for page building. Using Bookshop, your team can update the front matter of each page component in the Visual Editor. CloudCannon will re-render your page as changes occur, generating a preview of your page as you edit.

To get started with Bookshop, read our Astro Bookshop guide, or reach out to our support team.

Open in a new tab