microsoft / codetour

VS Code extension that allows you to record and play back guided tours of codebases, directly within the editor.
https://aka.ms/codetour
MIT License
4.34k stars 109 forks source link

Support Embedded Mermaid.js Diagrams in CodeTour-Flavored Markdown #293

Open Nezteb opened 7 months ago

Nezteb commented 7 months ago

I find diagrams often go well docs, and it'd be neat if CodeTour supported embedded Mermaid.js diagrams like GitHub does:

flowchart LR
    A[Hard edge] -->|Link text| B(Round edge)
    B --> C{Decision}
    C -->|One| D[Result one]
    C -->|Two| E[Result two]

The above looks like this when formatted as regular Markdown:

flowchart LR
    A[Hard edge] -->|Link text| B(Round edge)
    B --> C{Decision}
    C -->|One| D[Result one]
    C -->|Two| E[Result two]

Links: