How to define output filename

0 votes
asked Sep 7, 2018 in Question / help by Thomas
Is there a way to tell plantuml what filename to use for a file with multiple diagrams in it?

1 Answer

0 votes
answered Sep 8, 2018 by albert (3,520 points)

The following input, when png is the output format, will result in the files: BobAndAlice.png and JohnAndJane.png:

@startuml BobAndAlice
Bob -> Alice : hello
@enduml
@startuml JohnAndJane
John -> Jane : hello
@enduml

...