Hi, can I use '!include' statement to include some plantuml files?
For example, I expect to get a diagram like this for file_c.puml on Confluence
(C)ClassC---(C)ClassB---(C)ClassA
I also expect all puml files are in the same Confluence Space.
file_a.puml
@startuml
class ClassA
@enduml
file_b.puml
@startuml
!include file_a.puml
class ClassB
ClassB - ClassA
@enduml
file_c.puml
@startuml
!include file_b.puml
class ClassC
ClassC - ClassB
@enduml
I got installed this plugin by our admin, and now examining include* statements.
Results:
I hope:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.