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
Guide readers through numbered instructions with Steps and Step components so setup, install, and deploy workflows stay clear and sequential.
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>