bramp / js-sequence-diagrams

Draws simple SVG sequence diagrams from textual representation of the diagram
https://bramp.github.io/js-sequence-diagrams/
BSD 2-Clause "Simplified" License
7.81k stars 1.08k forks source link

Add support for grouping signals together #160

Open cilerler opened 8 years ago

cilerler commented 8 years ago

Group signals together using the alt/else, opt, loop, and par keywords.

Alice->Bob: Authentication Request
alt successful case
Bob->Alice: Authentication Accepted
else some kind of failure
Bob->Alice: Authentication Failure
opt
    loop 1000 times
        Alice->Bob: DNS Attack
    end
end
else Another type of failure
Bob->Alice: Please repeat
end

image

this should cover #149 and #152

vin-ni commented 6 years ago

Will this be supported anytime soon?