Skip to content

Add Mermaid Diagrams to Starlight

1 min read

This guide helps you add Mermaid Diagrams to Starlight.

  1. Start by installing the rehype-mermaid and playwright:

    Terminal window
    npm add rehype-mermaid playwright playwright-chromium
  2. Set up Astro configuration:

    astro.config.mjs
    // ...
    import rehypeMermaid from "rehype-mermaid";
    export default defineConfig({
    markdown: {
    syntaxHighlight: {
    type: "shiki",
    excludeLangs: ["mermaid", "math"],
    },
    rehypePlugins: [rehypeMermaid],
    },
    integrations: [
    starlight({
    // ...
    customCss: ["./src/styles/mermaid.css"],
    })
    ],
    })
src/content/docs/example.mdx
```mermaid
graph TD
A[Start] --> B{Is it working?}
B -->|Yes| C[Great!]
B -->|No| D[Debug]
D --> B
```

The code above generates the following on the page:

Yes

No

Start

Is it working?

Great!

Debug

  1. Mermaid diagrams in markdown