Work in progress on sailing library
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
6
content/sail-library/rules/_index.md
Normal file
6
content/sail-library/rules/_index.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Rules
|
||||
date: 2021-05-23
|
||||
type: book
|
||||
weight: 1
|
||||
---
|
17
content/sail-library/rules/flowchart.md
Normal file
17
content/sail-library/rules/flowchart.md
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
title: Rule flowchart
|
||||
date: 2021-05-23
|
||||
type: book
|
||||
weight: 1
|
||||
---
|
||||
|
||||
```mermaid
|
||||
graph TD
|
||||
Start[Started] --> B{Same tack?};
|
||||
B -- Yes --> C[Overlapped];
|
||||
B -- No --> D[Non overlapped]
|
||||
C --> D[Rethink];
|
||||
D --> B;
|
||||
B -- No ----> E[End];
|
||||
```
|
||||
|
Reference in New Issue
Block a user