Title here
Summary here
Use the steps shortcode with step children to render a styled ordered list. Each step becomes a numbered list item and its inner content supports Markdown.
{{< steps >}}
{{< step >}}
First step content.
{{< /step >}}
{{< step >}}
Second step content.
{{< /step >}}
{{< /steps >}}Neither steps nor step accept parameters. All content goes inside the step body.
Install dependencies
npm installStart the development server
npm run devhttp://localhost:1313 in your browser.{{< steps >}}
{{< step >}}
**Install dependencies**
```bash
npm install
```
{{< /step >}}
{{< step >}}
**Start the development server**
```bash
npm run dev
```
{{< /step >}}
{{< step >}}
Open `http://localhost:1313` in your browser.
{{< /step >}}
{{< /steps >}}