simov/markdown-viewer

mermaid rendering is not compatible with class="language-mermaid"

Closed this issue · 2 comments

mermaid rendering is not compatible with class="language-mermaid"

sequenceDiagram
    participant Zed as Zed Editor
    participant Rust as Rust Extension
    participant Node as Node.js Server
    participant PG as PostgreSQL

    Zed->>Rust: 启动 MCP
    Rust->>Node: 启动服务器
    Node->>PG: 连接数据库
    Node-->>Zed: 返回服务器端口
    
    loop Context Requests
        Zed->>Node: 发送上下文请求
        Node->>PG: 查询数据库
        PG-->>Node: 返回数据
        Node-->>Zed: 返回上下文信息
    end

Image my bad