Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,27 @@ into

![Sample generated UML diagram](https://bramp.github.io/js-sequence-diagrams/images/sample.svg)


A Grammar Self-Contain Example

title : title : hello
participant "participant example"
participant A
participant B
participant C
A -> B : "A->B"
A --> C : "A-->C"
B -->> C: "B-->>C"
C ->> B : "C->>B"
note over A,C : "note over A, C"
note left of A: "note left of A"
note right of C: "note right of C"
note over B: "note over B"

into

![Grammar_self_contain_example](https://winchua.github.io/images/self_contain.bmp)

Requirements
------------
You will need [Snap.svg](http://snapsvg.io/), [Web Font Loader](https://github.com/typekit/webfontloader) (if you wish to use custom fonts), [underscore.js](http://underscorejs.org/) (or [lodash](https://lodash.com/)), and optionally [jQuery](https://jquery.com/).
Expand Down