Docs
Create documentation and knowledge base for your product.
The Docs feature allows you to create and publish documentation, help centers, and knowledge bases for your product or service.
Getting Started
- Go to Docs from the dashboard
- Create a new documentation site
- Add pages and organize with sidebar
- Publish and share with users
Creating Documentation
Create a Doc Site
- Click Create Docs
- Enter site name and description
- Choose a theme
- Click Create
Add Pages
- Click Add Page
- Enter page title
- Write content in Markdown
- Click Save
Organize with Sidebar
Structure your docs with a sidebar navigation:
- [Introduction](/docs/README?lang=)
- [Getting Started](/docs/quickstart?lang=)
- **Features**
- [Feature 1](/docs/features/feature1?lang=)
- [Feature 2](/docs/features/feature2?lang=)
- **API Reference**
- [Overview](/docs/api/README?lang=)
- [Endpoints](/docs/api/endpoints?lang=)
Writing Content
Markdown Support
Write documentation in Markdown:
- Headings - Structure your content
- Code blocks - Show code examples
- Tables - Display structured data
- Links - Connect pages
- Images - Add visuals
Code Examples
Include syntax-highlighted code:
```javascript
const api = new LiteStartup('YOUR_API_KEY');
api.sendEmail({
to: '[email protected]',
subject: 'Hello'
});
```
Customization
Theme Settings
- Primary color - Match your brand
- Logo - Add your logo
- Favicon - Custom browser icon
Custom Domain
Host docs on your domain:
- Add CNAME record to your domain
- Configure domain in settings
- Docs available at
docs.yourdomain.com
Features
- Search - Full-text search across all pages
- Versioning - Maintain multiple doc versions
- Multi-language - Support multiple languages
- Analytics - Track page views and searches
- Feedback - Collect user feedback on pages
Best Practices
- Clear structure - Organize logically
- Concise writing - Get to the point
- Code examples - Show, don't just tell
- Keep updated - Maintain accuracy
- Use search data - Improve based on what users search for
Last updated: March 11, 2026