Core Features
Dive into the essential tools and capabilities of Steezy Tech that streamline your documentation workflow.
Overview
Steezy Tech provides powerful features to manage your project documentation efficiently. Organize content with intuitive folders, collaborate seamlessly with teams, track changes via version history, search quickly, and export or publish with ease. These tools help you maintain stylish, efficient documentation workflows.
Document Organization
Structure your docs with nested folders and tags for easy navigation.
Collaboration
Share docs securely and review changes in real-time.
Version History
Track every edit with full rollback capabilities.
Search Tools
Find content instantly across your entire workspace.
Export & Publish
Generate PDFs, HTML sites, or integrate with APIs.
Document Organization and Folders
Create a hierarchical structure for your documentation using folders and subfolders. Tag documents for cross-referencing and use drag-and-drop to reorganize.
Start by creating a new folder from the sidebar.
Navigate
Click the + icon in the sidebar.
Name Folder
Enter a name like API Reference and select a color.
Add Docs
Drag existing pages or create new ones inside.
Assign tags for better filtering.
// Example tag structure in config
{
"tags": ["api", "guide", "internal"]
}
Use color-coded folders to visually distinguish project areas, like blue for public docs and red for internal.
Collaboration and Sharing Options
Invite team members and set granular permissions. Share public links or embed docs in external sites.
// Generate shareable link via API
const response = await fetch('https://api.example.com/v1/docs/share', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
body: JSON.stringify({ docId: 'doc-123', permission: 'read' })
});
import requests
response = requests.post('https://api.example.com/v1/docs/share',
headers={'Authorization': 'Bearer YOUR_API_KEY'},
json={'docId': 'doc-123', 'permission': 'read'})
Version History Tracking
Every edit creates a snapshot. Compare versions side-by-side and restore previous states.
Use the API to fetch history:
const history = await fetch('https://api.example.com/v1/docs/doc-123/history');
console.log(history); // Array of versions
Search and Filtering Tools
Search across all docs with full-text capabilities. Filter by tags, folders, or dates.
| Feature | Description | Speed |
|---|---|---|
| Full-Text Search | Matches titles and content | <1s |
| Tag Filters | Narrow by custom tags | Instant |
| Advanced Query | Boolean operators supported | <500ms |
Export and Publishing Features
Publish to custom domains or export to various formats. Integrate with CI/CD for automated builds.
Publish Site
Select Publish from the workspace menu and enter your domain.
Export PDF
steezy export --format=pdf --output=./docs.pdf
API Webhook
Set up webhooks for real-time sync:
{
"url": "https://your-webhook-url.com/webhook",
"events": ["publish", "update"]
}
For production workflows, combine exports with GitHub Actions for automated documentation deployment.
Last updated today
Built with Documentation.AI