Core ConceptsFeatures

Core Features of ONE

Explore the essential tools in ONE for efficient documentation organization, collaboration, and management.

Overview

ONE provides powerful tools to organize, collaborate on, and manage your project documentation effectively. You can structure content hierarchically, share with teams securely, track changes with version history, and find information quickly using advanced search. These core features help you maintain a centralized knowledge base.

Document Organization and Structuring

Organize your documentation into folders, subfolders, and pages to create a logical hierarchy. You start by creating a root workspace, then add nested pages using the UI or API.

Create Workspace

Navigate to your dashboard and click New Workspace. Enter a name like Project Docs.

Add Folders

Inside the workspace, create folders such as API Reference and User Guides.

Nest Pages

Add MDX pages within folders. Use the drag-and-drop interface to reorder.

Use consistent naming conventions like kebab-case for folders to improve searchability.

Collaboration and Sharing Options

Invite collaborators and control access levels. Options include view-only, edit, or admin roles.

Go to workspace settings, enter email addresses, and assign roles.

// API example to invite user
await fetch('https://api.example.com/v1/workspaces/{workspaceId}/invites', {
  method: 'POST',
  headers: { 'Authorization': `Bearer ${YOUR_API_KEY}` },
  body: JSON.stringify({
    email: 'team@company.com',
    role: 'editor'
  })
});

Version History and Editing Tools

Every edit creates a new version. You access history from the page menu to compare, restore, or view diffs.

Versions are retained indefinitely. Contact support to adjust retention policies.

Search and Filtering Capabilities

Search across all documents with full-text indexing. Filter by folder, tags, or date.

Filter TypeDescriptionExample
FolderLimit to specific pathsfolder:api
TagsMatch document tagstags:feature
DateRecent changesupdated>2024-01-01
UserEdits by authorauthor:john@example.com

Example query: auth token filters results to authentication docs.