Core Features of RaaziSpace
Explore the main capabilities of RaaziSpace, from collaborative editing to version control. Understand how these features enhance your documentation processes.
Overview
RaaziSpace provides essential tools for managing project documentation efficiently. You can collaborate in real time, track changes with version history, search content quickly, and customize your docs to fit your needs. These features streamline workflows and improve team productivity.
Collaborative Editing
Edit documents together with real-time updates and presence indicators.
Version History
Track every change and revert to previous versions easily.
Search & Organization
Find content fast with powerful search and tagging tools.
Customization
Tailor your docs with themes, layouts, and API integrations.
Collaborative Editing and Real-Time Updates
Invite team members to edit docs simultaneously. RaaziSpace shows cursor positions and typing indicators, ensuring smooth collaboration.
Use @mentions to notify teammates directly in the editor.
Follow these steps to start collaborating:
Invite Collaborators
Open your doc and click the Share button in the top-right corner.
Enter email addresses or generate a shareable link.
Real-Time Sync
Collaborators see changes instantly. Use the presence list to see who's online.
Resolve Conflicts
RaaziSpace auto-merges non-conflicting edits. Review and accept changes in the sidebar.
Integrate via API for programmatic access:
const response = await fetch('https://api.example.com/docs/{docId}/collaborators', {
method: 'POST',
headers: { 'Authorization': `Bearer ${YOUR_API_KEY}` },
body: JSON.stringify({ emails: ['user@example.com'] })
});
import requests
response = requests.post(
'https://api.example.com/docs/{docId}/collaborators',
headers={'Authorization': f'Bearer {YOUR_API_KEY}'},
json={'emails': ['user@example.com']}
)
Version History and Change Tracking
Every edit creates a new version. You can compare changes, restore previous states, or branch docs for experiments.
Use the API to fetch version diffs:
The document identifier.
Specific version number to compare.
Search and Organization Tools
Quickly locate content with full-text search across all docs. Organize using tags, folders, and outlines.
| Feature | Description | Example Use |
|---|---|---|
| Full-Text Search | Searches titles, content, and tags | project roadmap |
| Tag Filtering | Apply and filter by custom tags | #urgent #v2.0 |
| Folder Structure | Nested organization | /projects/roadmap |
| Outline View | Jump to sections | Auto-generated TOC |
Type keywords in the global search bar to find matching docs.
Combine tags and dates: API changes since:2024-01-01 #feature.
Customization Options for Docs
Personalize your documentation with themes, custom CSS, and embeds. Use the dashboard or API for programmatic changes.
Themes
Switch between light/dark modes or upload custom styles.
Embeds
Add interactive charts, videos, or live previews.
API Hooks
Extend with webhooks for custom workflows.
Save customizations as templates for reuse across projects.
Last updated 2 days ago
Built with Documentation.AI