The Hitchhiker’s Guide to PlantUML
crashedmind.github.io
The Hitchhiker’s Guide to PlantUML
1–10 of 32 posts
Re: The Hitchhiker’s Guide to PlantUML
#2Re: The Hitchhiker’s Guide to PlantUML
#3It took 3 clicks to get to the code. https://crashedmind.github.io/PlantUMLHitchhikersGuide/Netwo...
Re: The Hitchhiker’s Guide to PlantUML
#4https://real-world-plantuml.com/
which appears to be harvested from GitHub searches: https://github.com/yfuruyama/real-world-plantuml/blob/master...
Re: The Hitchhiker’s Guide to PlantUML
#5The code example reminds me of Latex: https://crashedmind.github.io/PlantUMLHitchhikersGuide/Netwo...
Re: The Hitchhiker’s Guide to PlantUML
#6Re: The Hitchhiker’s Guide to PlantUML
#7Re: The Hitchhiker’s Guide to PlantUML
#8Can someone explain the difference with graphviz?
https://en.wikipedia.org/wiki/Unified_Modeling_Language
Not being flippant, that's the difference. graphviz/dot is general-purpose and can be configured to produce UML-like diagrams, but that's labor intensive.
PlantUML takes text and produces UML diagrams from it. It's configurable... as long as you want UML. If you want something else, reach for graphviz.
In my own work, I use dot/graphviz for diagramming abstract syntax trees, while I've used PlantUML a couple times to diagram the layout of structs and to map the high-level relationships between modules in large software projects.
org-mode does a very nice job of integrating both of those formats into documents, fyi.
Re: The Hitchhiker’s Guide to PlantUML
#9Can someone explain the difference with graphviz?
graphviz makes graphs, and PlantUML makes UML diagrams: https://en.wikipedia.org/wiki/Unified_Modeling_Language Not being flippant, that's the difference. graphviz/dot is general-purpose and can be configured to produce UML-like diagrams, but that's labor intensive. PlantUML takes text and produces UML diagrams from it. It's configurable... as long as you want UML. If you want something else, reach for graphviz. In m…
... as long as you want UML diagrams.
It can't save out valid UML class definitions to a file.
Re: The Hitchhiker’s Guide to PlantUML
#10It took 3 clicks to get to the code. https://crashedmind.github.io/PlantUMLHitchhikersGuide/Netwo...
Did you mean _code_ like https://github.com/Crashedmind/PlantUMLHitchhikersGuide (which appears to be just the generated code from https://github.com/Crashedmind/PlayingWithPlantUMLSource for some reason)