Core ConceptsFeatures

Core Features

Explore the essential features of SynthralOS that enable seamless documentation management and collaboration.

Overview

SynthralOS empowers you to manage documentation efficiently with intuitive tools for organization, version control, search, collaboration, and sharing. These core features streamline workflows, whether you maintain technical docs, user guides, or project knowledge bases.

Document Organization and Hierarchy

Organize your documentation into logical structures using folders, subfolders, and custom hierarchies. SynthralOS supports nested navigation, making large doc sets easy to browse.

Create Folders

Navigate to your workspace and select New Folder to build your hierarchy.

Add Pages

Drag and drop MDX files into folders or create new pages directly.

Reorder

Use drag-and-drop to adjust the sidebar navigation order.

Use frontmatter in MDX files to set custom sidebar order with order: 1.

Version Control for Docs

SynthralOS provides Git-like version control without external tools. Create branches, commit changes, and merge updates seamlessly.

// Create a new version via API
const response = await fetch('https://api.example.com/docs/v1/versions', {
  method: 'POST',
  headers: { 'Authorization': 'Bearer YOUR_TOKEN' },
  body: JSON.stringify({ name: 'v2.0-release', baseVersion: 'main' })
});

Revert changes with a simple API call or UI selector.

Search and Filtering Tools

Locate specific content instantly with full-text search, tags, and filters. Search across workspaces, filter by date, author, or status.

Enter keywords in the global search bar to scan titles, content, and metadata.

Collaboration and Permissions

Invite team members and set granular permissions: view, edit, admin. Enable real-time co-editing with conflict resolution.

Always review permissions before sharing sensitive docs.

Export and Sharing Options

Export docs as PDF, HTML, or ZIP. Generate public links or embed previews.

Select pages and click Export > PDF for print-ready docs.

<!-- Embed code snippet -->
<iframe src="https://docs.example.com/embed/project/123" width="100%" height="600"></iframe>