Skip to content

Instantly share code, notes, and snippets.

@brett-miller
Last active March 30, 2022 10:52
Show Gist options
  • Save brett-miller/925d142677555e6c082c3f4a87fd757e to your computer and use it in GitHub Desktop.
Save brett-miller/925d142677555e6c082c3f4a87fd757e to your computer and use it in GitHub Desktop.
Graphviz markdown

Alt text

```graphviz test digraph G { graph [fontname = "Helvetica"]; node [fontname = "Helvetica" penwidth=0.2]; edge [fontname = "Helvetica" arrowsize="0.6" ]; splines="curved" subgraph workflow { penwidth=0; node [shape=rect style="rounded,dashed" penwidth=0.2]; aLongNamedThing [id="foo" style="rounded"] aLongNamedThing -> b -> anotherLongThing; d -> e -> anotherLongThing; } start -> aLongNamedThing; start -> d; anotherLongThing -> end;
    start [shape=circle style="filled" fillcolor=orange height=".1"];
    end [shape=circle style="filled" fillcolor=orange];
}

test

</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment