I have experimented with multiple separate diagrams in the same file. I was hoping to do this to demonstrate the different themes.
@startuml
!theme amiga
Alice -> Bob: Hello
Bob -> Alice: Hi there!
@enduml
@startuml
!theme aws-orange
class Car {
+String make
+String model
+int year
}
@enduml
@startuml
!theme black-knight
c -> d: Hello
d -> c: Hi there!
@enduml
The themes bleed into each other. It would be nice if there was a keyword that forced the start of a new diagram.
Is there a way to force each diagram to display below the last one?
Dick Maley