24 lines
584 B
HTML
24 lines
584 B
HTML
You can create sequence diagrams like this:
|
|
<br />
|
|
<br />
|
|
```sequence<br />
|
|
Alice->Bob: Hello Bob, how are you?
|
|
Bob-->Alice: I am good thanks!
|
|
```<br />
|
|
<a target="_blank" href="http://bramp.github.io/js-sequence-diagrams/">More info</a>
|
|
<br />
|
|
<br />
|
|
Or flow charts like this:
|
|
<br />
|
|
<br />
|
|
```flow<br />
|
|
st=>start: Start<br />
|
|
e=>end<br />
|
|
op=>operation: My Operation<br />
|
|
cond=>condition: Yes or No?<br />
|
|
st->op->cond<br />
|
|
cond(yes)->e<br />
|
|
cond(no)->op<br />
|
|
```<br />
|
|
<a target="_blank" href="http://adrai.github.io/flowchart.js/">More info</a>
|