{% prose %}
Attributes
| Parameter | Type | Required | Description |
|---|---|---|---|
columns | boolean | β | Override document-level 2-column layout for this prose block |
Valid Parent Contexts
This tag is valid inside: {% domain %}, {% feature %}, {% flow %}, {% role %}, {% manifest %}, {% blueprint %}, {% story %}, {% milestone %}, {% tour %}, {% tag %}, {% surface %}, {% changeset %}, {% article %}
Wraps markdown-formatted prose content and gives the author explicit control over 2-column layout at the block level. When columns is omitted, the prose block inherits the parent documentβs column setting (or defaults to single-column if the parent has none).
Use \{% prose %\} when you need to control column layout for a specific section of content independently from the rest of the document.
Prose block with explicit 2-column layout
{% feature id="my-feature" roles="user" %} {% tldr %}Feature summary.{% /tldr %}
{% prose columns=true %} This content renders in a 2-column layout regardless of the document's default column setting.
- Item one - Item two {% /prose %}
{% prose columns=false %} This content is always single-column. {% /prose %}{% /feature %} Prose block inheriting parent columns
{% story columns=true %} {% prose %} This block inherits columns=true from the parent story tag. {% /prose %}{% /story %}