Help:Mermaid: Difference between revisions

From USApedia
Line 29: Line 29:
  class A,B,C,D,E,F,G,H,I node
  class A,B,C,D,E,F,G,H,I node
}}
}}
=== Test===
flowchart TB
    subgraph CEO
        A[CEO]
    end
    subgraph Departments
        B[Finance] --> A
        C[Marketing] --> A
        D[IT] --> A
        E[HR] --> A
        F[Operations] --> A
    end


===Sequence===
===Sequence===

Revision as of 18:30, 6 December 2024

The Mermaid extension provides a parser function to help generate diagrams and flowcharts using the mermaid script language. See the README file for detailed instructions on how to install, configure and use this extension

Examples

graph with links

Test

flowchart TB

   subgraph CEO
       A[CEO]
   end
   subgraph Departments
       B[Finance] --> A
       C[Marketing] --> A
       D[IT] --> A
       E[HR] --> A
       F[Operations] --> A
   end

Sequence

Syntax

graph with links

Links