esteinberg / plantuml4idea

Intellij IDEA plugin for PlantUML
Apache License 2.0
629 stars 114 forks source link

!includedef support #331

Open jvmlet opened 2 years ago

jvmlet commented 2 years ago

Please support !includedef syntax, below diagram renders empty output when mouse is on both @startuml lines :

@startdef(id=main)
actor Bob $color
Bob->Alice : hello
@enddef

@startuml
!$color = "#red"
!includedef  main
@enduml

@startuml
!$color = "#Blue"
!includedef  main
@enduml