upload testing marmaid and upml

This commit is contained in:
savagebidoof
2023-04-23 02:23:01 +02:00
parent 0f10f8f684
commit 0fc4fee1a0
9 changed files with 242 additions and 8 deletions

17
PLACEHOLDER.md Normal file
View File

@ -0,0 +1,17 @@
https://plantuml.com/
https://blog.jetbrains.com/dotnet/2020/10/06/create-uml-diagrams-using-plantuml/
```puml
Bob->Alice : Hello!
```
https://mermaid.js.org/#/
```mermaid
graph LR
A[Write Code] --> B{Does it work?}
B --> NO --> D[Google]
B --> YES --> C[GREAT!]
D --> A
```