Core ConceptsFeatures

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 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.

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' })
});

Version History Tracking

Every edit creates a snapshot. Compare versions side-by-side and restore previous states.

Search and Filtering Tools

Search across all docs with full-text capabilities. Filter by tags, folders, or dates.

FeatureDescriptionSpeed
Full-Text SearchMatches titles and content<1s
Tag FiltersNarrow by custom tagsInstant
Advanced QueryBoolean 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.