Files
hextra_mirror/docs/content/docs/guide/shortcodes/steps.md
Paul Marrapese b7f4bffce6 feat(shortcode): added markdown attribute support for headers (#851)
docs: added "no-step-marker" example for steps
2025-10-11 23:13:04 +01:00

913 B

title
title
Steps

A built-in component to display a series of steps.

You can use the Markdown attribute {class="no-step-marker"} to prevent a heading from being counted as a step.

Example

{{% steps %}}

Step 1

This is the first step.

Step 2

This is the second step.

Step subheading

This will not be counted as a step.

Step 3

This is the third step.

{{% /steps %}}

Usage

{{< callout type="warning" >}} Please note that this shortcode is intended only for Markdown content. If you put HTML content or other shortcodes as step content, it may not render as expected. {{< /callout >}}

Put Markdown h3 header within steps shortcode.

{{%/* steps */%}}

### Step 1

This is the first step.

### Step 2

This is the second step.

#### Step subheading {class="no-step-marker"}

This will not be counted as a step.

{{%/* /steps */%}}