plantuml / backlog

Contains all issues for plantuml that are not currently working-in-progress
0 stars 0 forks source link

Sequence: Teoz breaks newpage #8

Open MathieuDR opened 1 year ago

MathieuDR commented 1 year ago

When using the 'newpage' keyword, the Teoz renderer will render the full height and lifelines, making it pretty useless.

@startuml purchase_flow
!pragma teoz true

c -> c: First Page: One
c -> tc: First Page: Two
tc -> is: First Page: Three
is -> tc: First Page: Four
tc -> sc: First Page: Five
newpage

c -> c ++: Second Page: One
c -> tc: Second Page: Two
tc -> is: Second Page: Three
is -> tc: Second Page: Four
tc -> sc: Second Page: Five
c -> c --: deactivaton
newpage
@enduml

Will result in these images

bug_report-page1 bug_report-page2 bug_report-page3