-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample-seqdiag.tid
84 lines (69 loc) · 1.39 KB
/
example-seqdiag.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
title: $:/plugins/gt6796c/flowchart-tw5/example-seqdiag
Notation
```
<$seqdiag theme='hand'>
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
</$seqdiag>
```
Results
<$seqdiag theme='hand'>
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
</$seqdiag>
Notation
```
<$seqdiag>
# Example of a comment.
Note left of A: Note to the\n left of A
Note right of A: Note to the\n right of A
Note over A: Note over A
Note over A,B: Note over both A and B
</$seqdiag>
```
Results
<$seqdiag>
# Example of a comment.
Note left of A: Note to the\n left of A
Note right of A: Note to the\n right of A
Note over A: Note over A
Note over A,B: Note over both A and B
</$seqdiag>
Notation
```
<$seqdiag>
participant C
participant B
participant A
Note right of A: By listing the participants\n you can change their order
</$seqdiag>
```
Results
<$seqdiag>
participant C
participant B
participant A
Note right of A: By listing the participants\n you can change their order
</$seqdiag>
Notation
```
<$seqdiag>
Title: Here is a title
A->B: Normal line
B-->C: Dashed line
C->>D: Open arrow
D-->>A: Dashed open arrow
</$seqdiag>
```
Results
<$seqdiag>
Title: Here is a title
A->B: Normal line
B-->C: Dashed line
C->>D: Open arrow
D-->>A: Dashed open arrow
</$seqdiag>