From 2ee12ca04229ab950dd388af600c6d9adabdad81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Heredero?= Date: Thu, 19 Oct 2023 11:33:18 +0200 Subject: [PATCH] test for plantuml --- readme.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index 12da916..b4228e1 100644 --- a/readme.md +++ b/readme.md @@ -21,13 +21,16 @@ flowchart TD E --> |Yes| insert ``` -```flow -st=>start: Start:>http://google.com[blank] -``` +```plantuml +@startuml component +actor client +node app +database db -```sequence -Andrew -> China : Says Hello +db -> app +app -> client +@enduml ```