Skip to content

Instantly share code, notes, and snippets.

@mheap
Created December 15, 2014 11:16
Show Gist options
  • Save mheap/9f95d57492e7a85fda11 to your computer and use it in GitHub Desktop.
Save mheap/9f95d57492e7a85fda11 to your computer and use it in GitHub Desktop.
Mermaid/Graphviz

Graph

Mermaid

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;

Graphviz

digraph mygraph { A -> B; A -> C; B -> D; C -> D }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment