我想在一张和同一张渲染的plantuml图片中包含部署和排序内容。因此,我尝试了以下操作,但它不起作用,渲染显示了部署时A,B和C的序列内容。
如何强制将“ A-> B”和“ B-> C”渲染为顺序图素材?
@startuml
file main.c
note right: I want to have description text here
A -> B : main()
note left : program\nentry function
B -> C : load()
note left : another important function
@enduml