Mintlify pages are written in MDX, a powerful extension of Markdown that lets you embed interactive components directly in your documentation.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sorgm/data-architecture-docs/llms.txt
Use this file to discover all available pages before exploring further.
Basic Markdown syntax
Headings
Use## for section headers and ### for subsection headers. Each heading creates an anchor link and appears in the table of contents.
Text formatting
Format text using standard Markdown syntax:| Style | Syntax | Result |
|---|---|---|
| Bold | **bold** | bold |
| Italic | _italic_ | italic |
| Strikethrough | ~strikethrough~ |
**_bold and italic_** renders as bold and italic.
For superscript and subscript, use HTML tags:
| Style | Syntax | Result |
|---|---|---|
| Superscript | <sup>superscript</sup> | superscript |
| Subscript | <sub>subscript</sub> | subscript |
Lists
Create unordered lists with- or *:
Links
Link to external sites:[Google](https://google.com) creates Google.
Link to internal pages using root-relative paths: [Settings](/essentials/settings) links to Settings.
Blockquotes
Create blockquotes with>:
Documentation is a love letter that you write to your future self. — Damian Conway
Mintlify components
MDX lets you use powerful React components in your documentation. Here are the most commonly used Mintlify components:Callout components
Note
Use
<Note> for helpful informationTip
Use
<Tip> for pro tips and best practicesWarning
Use
<Warning> for important warningsInfo
Use
<Info> for general informationThis is a note callout. Use it to highlight helpful information that users should be aware of.
Card and CardGroup
Display content in cards for better visual organization:Getting Started
Jump right in with our quickstart guide
API Reference
Explore our API endpoints
Guides
Learn best practices
Examples
See real-world examples
Accordion
Use accordions to hide detailed content until needed:What is MDX?
What is MDX?
MDX is a format that lets you write JSX (React components) in your Markdown documents. This means you can import and use interactive components alongside your content.
Why use components in documentation?
Why use components in documentation?
Components make your documentation interactive and engaging. They help you present information in structured, scannable formats that improve the user experience.
Can I create custom components?
Can I create custom components?
Yes! You can create custom components in your snippets directory and import them into any page. See the Reusable Snippets guide for details.
Tabs
Present alternative options or multi-language examples:- npm
- yarn
- pnpm
Steps
Guide users through sequential processes:
Code:
Advanced features
LaTeX math
Render mathematical expressions using LaTeX with the<Latex> component:
Tables
Create tables using standard Markdown syntax:| Feature | Markdown | MDX | Mintlify |
|---|---|---|---|
| Basic formatting | ✓ | ✓ | ✓ |
| Components | ✗ | ✓ | ✓ |
| Syntax highlighting | ✗ | ✗ | ✓ |
| Auto-generated nav | ✗ | ✗ | ✓ |
Explore more components in the Mintlify documentation to enhance your docs.