syntax - PlantUML: nested components with text possible? -


as i've seen examples in plantuml can have graphical objects text in like

folder folder1 [     here can have explanation     ====     --markdown-- //formatting// ~~elements~~ ] 

which renders to

enter image description here

you can use folder (among other elements) group other items nesting them:

folder folder2 {     folder folder3 [         text bla bla     ]     artifact art2 [         more text     ] } 

enter image description here

but see no way combine both - object explaining text in and nested elements.

is possible plantuml? (how?)


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -