> For AI agents: the complete documentation index is available at https://rspress.rs/llms.txt, the full documentation bundle is available at https://rspress.rs/llms-full.txt.

# Steps

`Steps` renders Markdown content into step-by-step instruction blocks.

## Usage


### Step 1
Content for step 1.
### Step 2
> Content for step 2.

```mdx title="index.mdx"
import { Steps } from '@rspress/core/theme';

<Steps>

### Step 1

Content for step 1.

### Step 2

> Content for step 2.

</Steps>
```

Write direct child headings from `h2` to `h6` inside `<Steps>`; each heading starts a new step. Markdown under a heading becomes that step’s body.
