ZuploZuplo
LoginSign Up
  • 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

Admonitions

In addition to the basic Markdown syntax, we have a special admonitions syntax by wrapping text with a set of 3 colons, followed by a label denoting its type.

Admonitions are also commonly referred to as "Callouts". For programmatic usage, see the Callout component.

Example:

Code
:::note Some **content** with _Markdown_ `syntax`. Check [this `api`](#). ::: :::tip Some **content** with _Markdown_ `syntax`. Check [this `api`](#). ::: :::info Some **content** with _Markdown_ `syntax`. Check [this `api`](#). ::: :::warning Some **content** with _Markdown_ `syntax`. Check [this `api`](#). ::: :::danger Some **content** with _Markdown_ `syntax`. Check [this `api`](#). :::

Some content with Markdown syntax. Check this api.

Some content with Markdown syntax. Check this api.

Some content with Markdown syntax. Check this api.

Some content with Markdown syntax. Check this api.

Some content with Markdown syntax. Check this api.

Additional types

Beyond the standard severity types, the following themed variants are available with their own color and icon:

Code
:::sparkles For new features or AI-powered functionality. ::: :::rocket For getting-started or launch-related content. ::: :::settings For configuration sections. ::: :::zap For performance tips. ::: :::lock For authentication and security notes. ::: :::megaphone For announcements. :::

For new features or AI-powered functionality.

For getting-started or launch-related content.

For configuration sections.

For performance tips.

For authentication and security notes.

For announcements.

With title

You can also add a title to the admonition by adding it after the type:

Code
:::warning{title="Warning of the day"} The path of the righteous man is beset on all sides by the iniquities of the selfish and the tyranny of evil men. :::

Warning of the day

The path of the righteous man is beset on all sides by the iniquities of the selfish and the tyranny of evil men.

Usage with Prettier

If you use Prettier to format your Markdown files, Prettier might auto-format your code to invalid admonition syntax. To avoid this problem, add empty lines around the starting and ending directives. This is also why the examples we show here all have empty lines around the content.

Code
<!-- Prettier doesn't change this --> :::note Hello world ::: <!-- Prettier changes this --> :::note Hello world ::: <!-- to this --> ::: note Hello world:::
Edit this page
Last modified on May 29, 2026
MDXCode Blocks
On this page
  • Additional types
  • With title
  • Usage with Prettier
Markdown
Markdown
Markdown
Markdown