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

content

Table of contents

Description:

This key defines the text content inside the context box.

CloudCannon supports a limited selection of Markdown formatting for the value of this key: links, headings, bold, italic, subscript, superscript, and inline code.

This key is required for the context object to function.

This key has no default.

Appears in:
└── context
    └── content
Type:
string
Examples:

In this example, we want to provide detailed guidance for our blog_tags Input.

Copied to clipboard
_inputs:
  blog_tags:
    type: multiselect
    label: Blog Tags
    context:
      title: Tag Guidelines
      icon: help
      content: >
        # Tag Guidelines


        Choose 3-5 relevant tags that best describe this article. Tags help
        readers find related content and improve SEO.


        **Good examples:** technology, web development, tutorials

        **Avoid:** generic terms like "blog" or "article"
{
  "_inputs": {
    "blog_tags": {
      "type": "multiselect",
      "label": "Blog Tags",
      "context": {
        "title": "Tag Guidelines",
        "icon": "help",
        "content": "# Tag Guidelines\n\nChoose 3-5 relevant tags that best describe this article. Tags help readers find related content and improve SEO.\n\n**Good examples:** technology, web development, tutorials\n**Avoid:** generic terms like \"blog\" or \"article\"\n"
      }
    }
  }
}
Open in a new tab