-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample-flowchart.tid
45 lines (39 loc) · 1.05 KB
/
example-flowchart.tid
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
title: $:/plugins/gt6796c/flowchart-tw5/example-flowchart
Notation
```
<$flowchart
flowstate='{ "current" : { "fill" : "gray" } }' >
st=>start: Start|past:>[[HelloThere]]
e=>end: End|future:>http://www.google.com
op1=>operation: My Operation|past
op2=>operation: Stuff|current
sub1=>subroutine: My Subroutine|invalid
cond=>condition: Yes
or No?|approved:>http://www.google.com
c2=>condition: Good idea|rejected
io=>inputoutput: catch something...|future
st->op1(right)->cond
cond(yes, right)->c2
cond(no)->sub1(left)->op1
c2(yes)->io->e
c2(no)->op2->e
</$flowchart>
```
Results
<$flowchart
flowstate='{ "current" : { "fill" : "gray" } }'>
st=>start: Start|past:>[[HelloThere]]
e=>end: End|future:>http://www.google.com
op1=>operation: My Operation|past
op2=>operation: Stuff|current
sub1=>subroutine: My Subroutine|invalid
cond=>condition: Yes
or No?|approved:>http://www.google.com
c2=>condition: Good idea|rejected
io=>inputoutput: catch something...|future
st->op1(right)->cond
cond(yes, right)->c2
cond(no)->sub1(left)->op1
c2(yes)->io->e
c2(no)->op2->e
</$flowchart>