APIToGoAPIToGo
Visit APIToGo on LinkedIn
  • Documentation
  • Components
  • Themes
Quickstart
Configuration
Writing
    MarkdownFrontmatterMDXAdmonitionsCode Blocks
Concepts
OpenAPI
Authentication
Integrations
Guides
Deployment
Extending
powered by apitogo

Writing

Get started with creating rich documentation in APIToGo 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:

apitogo.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
Last modified on March 31, 2026
llms.txtMarkdown
On this page
  • Quick Start
    • Basic Document Structure
  • Adding to Navigation
  • File Organization
  • What's Next?
Markdown
TypeScript