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

comment

Table of contents

Description:

This key defines the subtext displayed below the heading for a group.

The value is a string that supports a limited set of Markdown: links, bold, italic, subscript, superscript, and inline code elements are allowed.

Appears in:
└── [*]
    └── groups
        └── [*]
            └── comment
Type:
string
Examples:

In this example, we have configured a group comment with Markdown formatting to provide additional context below the heading.

Copied to clipboard
_structures:
  article_information:
    values:
      - label: Blog
        value:
          title: 
          subtitle: 
          author: 
        groups:
          - heading: Titles
            comment: Make these SEO-friendly
            inputs:
              - title
              - subtitle
          - heading: Details
            inputs:
              - author
{
  "_structures": {
    "article_information": {
      "values": [
        {
          "label": "Blog",
          "value": {
            "title": null,
            "subtitle": null,
            "author": null
          },
          "groups": [
            {
              "heading": "Titles",
              "comment": "Make these SEO-friendly",
              "inputs": [
                "title",
                "subtitle"
              ]
            },
            {
              "heading": "Details",
              "inputs": [
                "author"
              ]
            }
          ]
        }
      ]
    }
  }
}
Open in a new tab