esteinberg / plantuml4idea

Intellij IDEA plugin for PlantUML
Apache License 2.0
633 stars 113 forks source link

!includedef support #331

Open jvmlet opened 3 years ago

jvmlet commented 3 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