AI agents: fetch the documentation index at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
Steps
Display numbered step-by-step instructions.
Use the Steps and Step components to present sequential instructions. Each step is automatically numbered.
Basic usage
<Steps>
<Step title="Install the CLI">
Run the install command for your package manager:
```bash
npm i -g blodemd
```
</Step>
<Step title="Create your project">
Create a new docs project in the current directory:
```bash
blodemd new
```
</Step>
<Step title="Start the dev server">
Preview your documentation locally:
```bash
blodemd dev
```
</Step>
</Steps>Install the CLI
Run the install command for your package manager:
npm i -g blodemdCreate your project
Create a new docs project in the current directory:
blodemd newStart the dev server
Preview your documentation locally:
blodemd devTitle sizing
Control the heading level of step titles with titleSize, either on individual steps or on the parent Steps component:
<Steps titleSize="h3">
<Step title="Configure your project">
Edit `docs.json` to set your project name and navigation.
</Step>
<Step title="Write your content">
Create MDX files in the `docs/` directory.
</Step>
</Steps>Configure your project
Edit docs.json to set your project name and navigation.
Write your content
Create MDX files in the docs/ directory.