Add Mermaid Diagrams to Starlight
1 min read
This guide helps you add Mermaid Diagrams to Starlight.
Step-by-step Guide
Section titled Step-by-step Guide-
Start by installing the
rehype-mermaid
↗ andplaywright
↗:Terminal window npm add rehype-mermaid playwright playwright-chromiumTerminal window pnpm add rehype-mermaid playwright playwright-chromiumTerminal window yarn add rehype-mermaid playwright playwright-chromiumTerminal window bun add rehype-mermaid playwright playwright-chromium -
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"],})],})
Example
Section titled Example```mermaidgraph 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: