Core Features of Graphic Gato
Explore the essential capabilities of Graphic Gato for efficient documentation management and team collaboration.
Overview
Graphic Gato provides a powerful documentation platform that helps you organize knowledge, collaborate in real-time, and share content effortlessly. You can structure your docs with folders, edit collaboratively with version history, search using tags, export to multiple formats, and customize your workspace to fit your workflow.
Graphic Gato streamlines documentation for teams, making it easy to maintain up-to-date guides and resources.
Key Features
Discover the core capabilities through these highlighted features.
Document Organization
Create folders and subfolders to keep your docs structured and accessible.
Real-time Editing
Collaborate live with version control to track every change.
Search & Tagging
Quickly find content using powerful search and custom tags.
Export Options
Export docs to PDF, HTML, Markdown, and more.
Customization
Tailor spaces and templates to match your branding.
Document Organization and Folders
Organize your documentation hierarchically using folders and subfolders. You create a main folder for projects, then nest subfolders for guides, APIs, and FAQs.
Steps to Organize Documents
Create a Folder
Navigate to your workspace and click the new folder button. Name it {project-name}.
Add Subfolders
Right-click the parent folder and select "New Subfolder". Use names like api-docs or user-guides.
Move Documents
Drag and drop existing docs into folders to reorganize instantly.
This structure keeps your content scalable as your documentation grows.
Real-time Editing and Version Control
Edit documents collaboratively with others in real-time. Changes sync instantly, and version control tracks every edit.
Open a document and invite team members. See cursors and changes live.
Click the history icon to browse revisions, compare changes, and restore versions.
// Example: Integrate real-time updates via WebSocket
const socket = new WebSocket('wss://api.example.com/docs/realtime');
socket.onmessage = (event) => {
const update = JSON.parse(event.data);
applyDelta(update.delta); // Apply collaborative changes
};
Search and Tagging Functionality
Search across all documents with full-text search and tags. Assign tags like api, internal, or draft for quick filtering.
| Feature | Description |
|---|---|
| Full-text Search | Finds content matching keywords |
| Tag Filtering | Filter by multiple tags |
| Advanced Query | Use tag:api AND updated>2024 |
Combine search with folders for precise results in large workspaces.
Export Options for Various Formats
Export your documentation to share externally. Choose from PDF for print, HTML for web, or Markdown for GitHub.
# My Document
Content here...
## Section
- List item
# CLI Export Example
gato export --format=pdf --folder=api-docs output.pdf
<!DOCTYPE html>
<html>
<body>
<h1>Exported Doc</h1>
<p>Content rendered as HTML.</p>
</body>
</html>
Customization of Spaces and Templates
Customize your documentation spaces with themes, logos, and templates. Set your brand color to #9F35A4 and create reusable page templates.
These features empower you to manage documentation efficiently. Explore Quickstart for hands-on setup.
Last updated today
Built with Documentation.AI