Navigation Menu

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


@z0r1k
Copy link

z0r1k commented Feb 12, 2020

@pirancaci
Copy link

I've been playing with Gliffy, simple but powerful enough for my needs.

Hello
I am working on asciidoctor-gradle-plugin and want to find a way how to edit existing or create new diagrams within asciidoctor in gradle. Is there a way to do this? Thank you in advance :D

@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