34 lines
871 B
Markdown
34 lines
871 B
Markdown
# V0.5.0 Overview
|
|
|
|
This is the documentation for version 0.5.0 of docmd. This version introduces several new features for developers.
|
|
|
|
## Features
|
|
|
|
- **Developer Tools**: Enhanced debugging capabilities
|
|
- **Performance**: Faster build times for large documentation sites
|
|
- **Search**: Improved keyword search with better relevance scoring
|
|
- **Plugins**: New plugin API for extending functionality
|
|
|
|
## Getting Started
|
|
|
|
To get started with version 0.5.0, install the package:
|
|
|
|
```bash
|
|
npm install @docmd/core@0.5.0
|
|
```
|
|
|
|
## Developer Guide
|
|
|
|
This version is designed with developers in mind. The new developer tools make it easier to debug and customize your documentation site.
|
|
|
|
### Configuration
|
|
|
|
Configure your site by creating a `docmd.config.js` file in your project root.
|
|
|
|
### Building
|
|
|
|
Run the build command to generate your documentation:
|
|
|
|
```bash
|
|
npx docmd build
|
|
``` |