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

title

Table of contents

Description:

This key defines the title of the context box.

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

In this example, we want to customize the context box title to be more descriptive for our author_bio Input.

Copied to clipboard
_inputs:
  author_bio:
    type: textarea
    label: Author Biography
    context:
      title: Writing Guidelines
      icon: edit
      content: >-
        Write a brief, professional biography (2-3 sentences) that highlights
        your expertise and experience.
{
  "_inputs": {
    "author_bio": {
      "type": "textarea",
      "label": "Author Biography",
      "context": {
        "title": "Writing Guidelines",
        "icon": "edit",
        "content": "Write a brief, professional biography (2-3 sentences) that highlights your expertise and experience."
      }
    }
  }
}
Open in a new tab