Skip to content
{% prose %}
AutoXXS (320px)XS (375px)SM (640px)MD (768px)LG (1024px)XL (1280px)XXL (1536px)
SketchMaterialiOSTamagui
DataInjectionKeyPatternsServiceTransactionProcessResearchProductQualityPerformanceSpecDomainFunctionTechnologyArchitectureConfigMiddlewareDataDatabaseDrizzleMigrationModelop-sqliteSchemaSQLState ManagementDraftKeystoneMergePatchPatchesPersistenceReactiveRedoStoreUndoTestingDeviceFactoryIsolationTypeScriptZodTopicsCommunicationBidsNVCDesignDesign ImplicationsEducationPedagogyFoundationsPsychologyAttachmentFloodingRelatingAuthentic RelatingUIEditorReact Native

{% 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
tagprose prose-tag-basic
{% 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
tagprose prose-tag-inherited
{% story columns=true %}
{% prose %}
This block inherits columns=true from the parent story tag.
{% /prose %}
{% /story %}