Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yeziyang1992/book
https://github.com/yeziyang1992/book
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yeziyang1992/book
- Owner: yeziyang1992
- Created: 2018-04-23T05:06:09.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-05T03:03:53.000Z (over 6 years ago)
- Last Synced: 2023-12-11T17:28:53.735Z (11 months ago)
- Size: 1020 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# book
```sequence
小明->小李: 你好 小李, 最近怎么样?
Note right of 小李: 小李想了想
小李-->小明: 还是老样子
```
```mermaid!
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
```flow
st=>start: 开始
e=>end: 结束
op=>operation: 操作步骤
cond=>condition: 是 或者 否?st->op->cond
cond(yes)->e
cond(no)->op
```
```flow
st=>start: Start
op=>operation: Your Operation
cond=>condition: Yes or No?
e=>endst->op->cond
cond(yes)->e
cond(no)->op
``````seq
Alice->Bob: Hello Bob, how are you?
Note right of Bob: Bob thinks
Bob-->Alice: I am good thanks!
```