FlowChart 流程图

Based on flowchart.js:http://adrai.github.io/flowchart.js/

x
1
#### Using FlowChart
2
3
setting:
4
5
    {
6
        flowChart : true
7
    }
8
9
#### Example
10
11
```flow
12
st=>start: User login
13
op=>operation: Operation
14
cond=>condition: Successful Yes or No?
15
e=>end: Into admin
16
17
st->op->cond
18
cond(yes)->e
19
cond(no)->op
20
```

Using FlowChart

setting:

  1. {
  2. flowChart : true
  3. }

Example

st=>start: User login op=>operation: Operation cond=>condition: Successful Yes or No? e=>end: Into admin st->op->cond cond(yes)->e cond(no)->op