waldo1001 / crs-al-language-extension

Make working with the (Dynamics NAV / 365) AL Language easier and more efficient.
MIT License
34 stars 42 forks source link

Add support for Mermaid diagram syntax for "Create Dependency Graph" command #298

Open sergeyol opened 5 months ago

sergeyol commented 5 months ago

Mermaid diagrams are very similar in syntax to GraphViz (so it would be fast to implement), and are supported out-of-the-box by Github and Azure Devops markdown engines.

Here is an example of a syntax:

flowchart TD;
LIB[Library App]
APP1[App 1]
APP2[App 2]

LIB --> APP1
LIB --> APP2