Skip to content

Instantly share code, notes, and snippets.

@rodneyrehm
Last active November 7, 2022 09:11
Show Gist options
  • Save rodneyrehm/40e7946c0cff68a31cea to your computer and use it in GitHub Desktop.
Save rodneyrehm/40e7946c0cff68a31cea to your computer and use it in GitHub Desktop.
Diagrams for Documentation

some tools for diagrams in software documentation

Diagrams For Documentation

Obvious Choices

ASCII

UML

yUML (ruby on rails) can be hosted yourself, for 49 USD

Sequence Diagrams


Example Diagram


Dalek Class Dalek Sequence


@SamuelMarks
Copy link

@philip-gai
Copy link

You can also use diagrams.net (draw.io) diagrams in your repository. Check it out

@djmetzle
Copy link

djmetzle commented Mar 22, 2022

Mermaid is Github native now.

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

I'd forgotten the name, and found this Gist organically via Google. Seems like Mermaid is definitely worth mentioning here in this context. 😉

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