Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Self-Contain Example #193

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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