Quick Start
Quick Start Your Docs π
This is the home page of your new docmd project. Youβre currently viewing docs/index.md β edit it, and your site updates.
Run the dev server
npx @docmd/core dev
Open http://localhost:3000 β the page auto-reloads as you edit.
Build for production
npx @docmd/core build
Output goes to site/. Deploy that folder anywhere that serves static files.
Project structure
.
βββ docs/ # Your markdown content
β βββ index.md # You are here
βββ assets/ # Custom CSS, JS, and images
βββ docmd.config.json # Site configuration
βββ package.json # Node dependencies + scripts
Features
1. Smart containers
::: callout tip "Did you know?"
You can nest containers, add titles, and use icons.
:::
::: card "Flexible" icon:layout-grid
Organise content with cards.
[View the docs β](https://docs.docmd.io){.docmd-button}
:::
Renders as a styled callout and a card with a button.
2. Tabs and code
::: tabs
== tab "JavaScript" icon:braces
```javascript
console.log('Hello World');
```
== tab "Python" icon:code
```python
print('Hello World')
```
:::
3. Built-in plugins
docmd ships with these plugins enabled by default β no install needed:
- AI Assistant β interactive documentation chat (100% free with BYOK or docmd Cloud)
- Search β full-text + semantic search (optional)
- Sitemap + SEO meta tags
- LLMs context β
llms.txtandllms.jsonfor AI agents - OKF β Open Knowledge Format bundle at
site/okf/ - Mermaid diagrams
- Git last-modified timestamps
- Math (KaTeX) β enable with
docmd add math
See the full plugin list.
Next steps
Happy documenting! π