Skip to content
| Marketplace
Sign in
Visual Studio Code>Visualization>Mermaid Diagrams for DeckpilotNew to Visual Studio Code? Get it now.
Mermaid Diagrams for Deckpilot

Mermaid Diagrams for Deckpilot

Cristian Ormazabal

|
2 installs
| (0) | Free
Native Mermaid diagram renderer for Deckpilot.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

deckpilot-mermaid

Native Mermaid diagram support for Deckpilot.

What it does

deckpilot-mermaid is a companion VS Code extension for Deckpilot. It registers a native Mermaid renderer with priority 10, so standard Mermaid diagrams render server-side as SVG while still coexisting with lower-priority fallbacks such as deckpilot-triton.

When Mermaid cannot handle a diagram natively, Deckpilot can still fall back to other registered renderers or the webview fallback flow.

Requirements

  • Deckpilot (focus-space.executable-talk) installed
  • VS Code 1.95+

Install

From the VS Code Extensions view

  1. Install Deckpilot
  2. Install Mermaid Diagrams for Deckpilot (deckpilot-mermaid)
  3. Reload VS Code if prompted

From source

npm ci
npm --workspace deckpilot-mermaid run build
cd apps/deckpilot-mermaid
npx vsce package --no-dependencies

Install the generated .vsix from VS Code with Extensions: Install from VSIX...

Usage

Open a .deck.md file and add Mermaid diagram fences.

Basic flowchart

```diagram:mermaid
flowchart TD
  A[Deckpilot] --> B[Mermaid]
  B --> C[SVG in slides]
```

State diagram

```diagram:mermaid caption="Preview state machine"
stateDiagram-v2
  [*] --> Idle
  Idle --> Rendering: executeAction
  Rendering --> Ready: slideChanged
  Ready --> [*]
```

Gantt with caption

```diagram:mermaid caption="Release checklist"
gantt
  title Release readiness
  dateFormat  YYYY-MM-DD
  section Validation
  Tests complete    :done, a1, 2026-07-01, 2d
  Docs updated      :done, a2, 2026-07-03, 1d
  Release review    :active, a3, 2026-07-05, 1d
```

Theme override

```diagram:mermaid theme=dark caption="Night mode architecture"
flowchart LR
  Webview --> Conductor --> Renderer
```

theme=auto follows the active Deckpilot preview theme. Explicit theme= values override that detection.

Supported Mermaid diagram types

Major Mermaid-native diagram families supported by this extension include:

  • Flowcharts
  • Sequence diagrams
  • State diagrams
  • Class diagrams
  • Entity relationship diagrams
  • User journey diagrams
  • Gantt charts
  • Pie charts
  • Git graphs
  • Mind maps
  • Timeline diagrams
  • Sankey diagrams
  • Requirement diagrams
  • Quadrant charts

If Mermaid.js adds support for a new type and the bundled runtime can parse it, Deckpilot can render it without extra configuration.

Coexistence and fallback behavior

  • deckpilot-mermaid registers priority 10
  • deckpilot-triton fallback registers priority 5
  • diagram:mermaid prefers native Mermaid when Mermaid supports the source
  • Unsupported Mermaid-native types that Triton can handle keep flowing to Triton
  • Explicit diagram:triton fences stay on Triton even when Mermaid is installed
  • If native offline rendering times out or fails unexpectedly, the webview fallback can still render Mermaid.js in the presentation

Known limitations

  • Offline native rendering still depends on Mermaid.js and jsdom; if that path fails, Deckpilot falls back to webview rendering
  • If Triton is installed, some unsupported Mermaid-native diagrams may be claimed by Triton instead of showing a native Mermaid error
  • Export parity between every Mermaid feature and every Deckpilot presentation workflow is still evolving

Troubleshooting

Diagram does not render

  • Confirm the fence starts with diagram:mermaid
  • Validate Mermaid syntax in the source block
  • Check whether another renderer extension is installed and intentionally taking the fallback path
  • Open Developer: Toggle Developer Tools and inspect console warnings from deckpilot-mermaid

Diagram uses the wrong theme

  • Try theme=dark, theme=light, or theme=contrast explicitly on the fence
  • If using theme=auto, verify the active Deckpilot preview theme
  • Reload the preview after switching VS Code or Deckpilot theme if you were already viewing the slide

Development

npm --workspace deckpilot-mermaid run build
npm --workspace deckpilot-mermaid run test

For a ready-made sample deck, open examples/mermaid-showcase.deck.md.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft