๐ฅ Team Collaboration Guide
Welcome to the UAGC DX Documentation collaboration workflow! This guide shows you how to easily edit and contribute to our documentation using our enhanced GitHub-based system.
๐ Quick Start: Editing Documentationโ
Method 1: "Edit this Page" Links (Recommended)โ
โจ Perfect for quick edits and content updates
- ๐ Find the page you want to edit on the documentation site
- โ๏ธ Click "Edit this page" link at the bottom of any page
- ๐ง Make your changes directly in GitHub's web editor
- ๐พ Commit changes with a descriptive message
- ๐ Auto-deploys within 2-5 minutes!
Pro Tip
For small changes (typos, content updates, links), you can commit directly to main. For larger changes, create a pull request for review.
Method 2: GitHub Repository Editingโ
๐ง For more complex edits or multiple files
- ๐ Go to: GitHub Repository
- ๐ Navigate to: new-docs/folder
- โ๏ธ Click the pencil icon (โ๏ธ) on any .mdfile
- ๐ง Make your changes
- ๐ Commit or create pull request
๐ Documentation Standardsโ
โ๏ธ Writing Guidelinesโ
- Format: Use Markdown with Docusaurus extensions
- Style: Follow existing patterns and tone
- Links: Use relative links for internal pages (/getting-started)
- Images: Store in static/img/directory
- Code: Use syntax highlighting with language specifications
๐ Content Structureโ
---
title: Your Page Title
description: Brief description for SEO
sidebar_position: 1
---
# Your Page Title
Brief introduction paragraph.
## Main Section
Content here...
:::tip[Helpful Tip]
Use callouts for important information!
:::
๐จ Available Calloutsโ
:::tip[Success]
For positive outcomes and helpful tips
:::
:::warning[Important]
For important information that needs attention
:::
:::danger[Critical]
For critical warnings or breaking changes
:::
:::info[Note]
For general information and context
:::