2023-07-30 11:19:12 +01:00
|
|
|
---
|
|
|
|
title: Steps
|
|
|
|
---
|
|
|
|
|
|
|
|
A built-in component to display a series of steps.
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
2023-08-14 21:56:26 +01:00
|
|
|
{{% steps %}}
|
2023-07-30 11:19:12 +01:00
|
|
|
|
|
|
|
### Step 1
|
|
|
|
|
|
|
|
This is the first step.
|
|
|
|
|
|
|
|
### Step 2
|
|
|
|
|
|
|
|
This is the second step.
|
|
|
|
|
|
|
|
### Step 3
|
|
|
|
|
|
|
|
This is the third step.
|
|
|
|
|
2023-08-14 21:56:26 +01:00
|
|
|
{{% /steps %}}
|
2023-07-30 11:19:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Put Markdown h3 header within `steps` shortcode.
|
|
|
|
|
2023-08-14 21:56:26 +01:00
|
|
|
```
|
|
|
|
{{%/* steps */%}}
|
2023-09-05 03:24:51 -07:00
|
|
|
|
2023-07-30 11:19:12 +01:00
|
|
|
### Step 1
|
|
|
|
|
|
|
|
This is the first step.
|
|
|
|
|
|
|
|
### Step 2
|
|
|
|
|
|
|
|
This is the second step.
|
2023-09-05 03:24:51 -07:00
|
|
|
|
2023-08-14 21:56:26 +01:00
|
|
|
{{%/* /steps */%}}
|
2023-07-30 11:19:12 +01:00
|
|
|
```
|