ZuploZuplo
LoginStart for Free
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop using the Portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingMCP - Quick start
    Develop Locally
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth
Concepts
Development
Policies
Handlers
API Keys
MCP Server
MCP Gateway
AI Gateway
Developer Portal
    IntroductionLocal DevelopmentUpdating VersionsNode Modules & Customization
    Configuration
    Writing
      MarkdownFrontmatterMDXAdmonitionsCode Blocks
    OpenAPI
    Authentication
    Integrations
    Guides
    Extending
    Components
Monetization
Deploying & Source Control
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku

Writing

Get started with creating rich documentation in Dev Portal using Markdown and MDX. This guide covers the essentials to help you begin documenting your project.

Quick Start

  1. Create a markdown file in your pages directory
  2. Add frontmatter with title and metadata
  3. Configure navigation to make it discoverable
  4. Write content using Markdown or MDX

Basic Document Structure

Code
--- title: My Document sidebar_icon: file-text --- Your content goes here using standard Markdown syntax.

Adding to Navigation

To make your documentation discoverable, add it to the navigation configuration. Documents are referenced by their file path:

zudoku.config.ts
const config = { navigation: [ { type: "doc", file: "my-document", label: "My Document", }, ], };

Learn more about configuring navigation at Navigation → Documents.

File Organization

Organize your documentation files in logical directories:

Code
pages/ ├── getting-started/ │ ├── installation.md │ └── quick-start.md ├── guides/ │ ├── authentication.md │ └── deployment.md └── api/ └── reference.md

What's Next?

Explore the detailed guides to enhance your documentation:

  • Markdown Overview - Complete markdown syntax reference
  • Frontmatter - Document metadata and configuration
  • MDX - Interactive components in markdown
  • Admonitions - Callouts and alerts
  • Code Blocks - Syntax highlighting and features
Edit this page
Last modified on May 29, 2026
llms.txtMarkdown
On this page
  • Quick Start
    • Basic Document Structure
  • Adding to Navigation
  • File Organization
  • What's Next?
Markdown
TypeScript