A Raycast extension that instantly converts Mermaid diagram code from your clipboard into beautiful images.
npm install -g @mermaid-js/mermaid-cli
Prepare Mermaid Code:
Example:
graph TD
    A[Start] --> B{Is it working?}
    B -->|Yes| C[Great!]
    B -->|No| D[Debug]
    D --> B
Run the Extension: Open Raycast and run "Mermaid to Image"
View and Share: The extension will automatically generate an image from your selected text or clipboard content (selected text takes priority)
Available Actions:
Configure the extension in Raycast preferences:
Here are some example Mermaid diagrams you can try:
graph TD
    A[Start] --> B{Is it working?}
    B -->|Yes| C[Great!]
    B -->|No| D[Debug]
    D --> B
sequenceDiagram
    participant Alice
    participant Bob
    Alice->>John: Hello John, how are you?
    loop Healthcheck
        John->>John: Fight against hypochondria
    end
    Note right of John: Rational thoughts <br/>prevail!
    John-->>Alice: Great!
    John->>Bob: How about you?
    Bob-->>John: Jolly good!
classDiagram
    Animal <|-- Duck
    Animal <|-- Fish
    Animal <|-- Zebra
    Animal : +int age
    Animal : +String gender
    Animal: +isMammal()
    Animal: +mate()
    class Duck{
        +String beakColor
        +swim()
        +quack()
    }
    class Fish{
        -int sizeInFeet
        -canEat()
    }
    class Zebra{
        +bool is_wild
        +run()
    }
This extension uses:
MIT
Made with ❤️ for Raycast