hamacs/snippets/org-mode/component-diagram
Howard Abrams 513f2f06de Let's go ... first commit after a major refactor
Why yes, this will look like it sprung, like Athena, fully grown and
in armor from my head, but this is really just the mid-point of a new
endeavor.
2021-11-02 12:09:41 -07:00

35 lines
622 B
Text

# -*- mode: snippet -*-
# contributor: Howard Abrams <howard.abrams@gmail.com>
# name: component-diagram
# key: component
# condition: (ha/org-nested-in-plantuml-block)
# group: plantuml
# --
' See details at https://plantuml.com/component-diagram
package "Some Group" {
HTTP - [First Component]
[Another Component]
}
node "Other Groups" {
FTP - [Second Component]
[First Component] --> FTP
}
cloud {
[Example 1]
}
database "MySql" {
folder "This is my folder" {
[Folder 3]
}
frame "Foo" {
[Frame 4]
}
}
[Another Component] --> [Example 1]
[Example 1] --> [Folder 3]
[Folder 3] --> [Frame 4]