Numbered lists and theDocumentation Index
Fetch the complete documentation index at: https://learn.mintlify.com/llms.txt
Use this file to discover all available pages before exploring further.
<Steps> component both render as numbered sequences. Steps add visual weight with a prominent step number, a title, and a clearly bounded content area for each step.
That design is useful when you’re guiding someone through complex tasks where each step requires decisions or complex actions. But for simpler procedures, a plain numbered list is often enough.
When to use the steps component
Use<Steps> when:
- Each step requires substeps, decisions, or significant context that a single list item is insufficient.
- The steps are sequential. For example, completing step 2 requires completing step 1 first.
Example steps
When a numbered list is better
Use a numbered list when:- Each item fits in one or two lines.
- You’re listing things in a logical order, not guiding someone through a task.
- The content doesn’t need sub-elements like code blocks, images, or multiple lines of context.
Example descriptive numbered list
<Steps> component doesn’t help communicate the sequence.
Example procedural numbered list
The one-line step problem
A common misuse of the steps component is wrapping content without using the component’s full capabilities.Step titles matter
Step titles appear in the table of contents on some Mintlify themes and readers scan them to understand the overall procedure. A title like “Configure” is less helpful than “Configure your webhook endpoint.” The latter tells you exactly what the step is about. Generally, start step titles with a verb and end with the specific thing being acted on.- “Installation” → “Install project dependencies”
- “Analaytics script” → “Add the analytics script to your layout”
- “Test” → “Test the connection”
Next up: Describe branching procedures — How to handle when a procedure forks based on platform, role, preference, or other factors.