【发布时间】:2020-09-28 13:40:19
【问题描述】:
是否可以向包含另一个对象的植物对象添加文本描述?我知道这如何添加额外的文本:
@startuml
rectangle rect [
This is a <b>folder
----
You can use separator
====
of different kind
....
and style
]
@enduml
我可以在一个对象中添加一个对象:
rectangle sb3crect {
rectangle rect [
This is a <b>folder
----
You can use separator
====
of different kind
....
and style
]
component sb3c [
QA QMgr: QAMBSB3C
]
}
后者的图表产生:
但是,我试图替换的现有图表在包含其他对象的对象(无论是矩形、节点、组件等)中有很多描述,例如:
(添加了突出显示以说明附加文本)。
有没有办法在植物中做到这一点,或者那些只是对象之外的注释?
【问题讨论】:
标签: plantuml