1
0
jcktrue.dk/content/sail-library/rules/flowchart.md
Jens True 33d524bcc5
All checks were successful
continuous-integration/drone/push Build is passing
Work in progress on sailing library
2021-06-06 14:22:15 +02:00

18 lines
259 B
Markdown

---
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];
```