Skip to content

Instantly share code, notes, and snippets.

@edsu
Last active August 24, 2023 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edsu/ae1e58a4ec2aa2f76092a4124a44534c to your computer and use it in GitHub Desktop.
Save edsu/ae1e58a4ec2aa2f76092a4124a44534c to your computer and use it in GitHub Desktop.

Org A split off of Org B, Org B split into Org C & Org D, Org A and Org D merged into Org E?

can be turned into Mermaid notation

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

which Github renders as:

graph TD;
  B --> A;
  B --> C;
  B --> D;
  A --> E;
  D --> E;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment