| title | Managing Your Documentation |
|---|---|
| description | Learn how to create, organize, and maintain documentation within your Paperguide projects. |
Paperguide lets you build and manage comprehensive documentation sites. You create pages using MDX files, organize them into hierarchies, and collaborate with your team. Maintain version history to track changes over time.
Start with a clear structure. Plan your navigation before creating pages to ensure intuitive user experience.Create new documentation pages directly in your project repository. Use the file system to add .mdx files in your docs/ directory.
```mdx
---
title: Quickstart Guide
description: Get started with Paperguide in minutes.
---
## Introduction
Welcome to your first page.
```
Structure your docs with folders and navigation configuration. Use sidebar menus to create logical hierarchies.
Organize files in nested folders for automatic hierarchy.```
docs/
├── introduction.mdx
├── guides/
│ ├── setup.mdx
│ └── advanced.mdx
└── api/
└── reference.mdx
```
```typescript
export const nav = [
{ title: "Introduction", href: "/introduction" },
{
title: "Guides",
items: [
{ title: "Setup", href: "/guides/setup" },
{ title: "Advanced", href: "/guides/advanced" }
]
}
];
```
Invite team members to your Paperguide project for real-time collaboration. Track changes with Git-based version history.
| Feature | Description | Benefit |
|---|---|---|
| Pull Requests | Review changes before merging | Prevents errors |
| Version History | View diffs and revert | Easy rollback |
| Comments | Inline feedback on pages | Faster reviews |
| Branches | Work on features separately | Isolated development |
Compare versions side-by-side to identify changes.