From b5b79be6feb661a0c2c7e531029405b4da2548c5 Mon Sep 17 00:00:00 2001 From: "jerome.fayot" Date: Mon, 26 Aug 2024 18:45:19 +0200 Subject: [PATCH] doc: added plantuml proxy services --- README.md | 6 +----- resources/basic.puml | 5 +++++ 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 resources/basic.puml diff --git a/README.md b/README.md index b378d48..a5b95fe 100644 --- a/README.md +++ b/README.md @@ -43,11 +43,7 @@ A Dynamic StateMachine where states and transitions are created runtime. Considering the following minimal state machine, it can be coded as follows: -```plantuml -hide empty description -[*] -right-> s0 -s0 -right-> s1 -``` +![basic-uml](http://www.plantuml.com/plantuml/proxy?cache=no&src=https://raw.githubusercontent.com/jfayot/dynamic-state-machine/master/resources/basic.puml) ### Flat-style StateMachine setup diff --git a/resources/basic.puml b/resources/basic.puml new file mode 100644 index 0000000..67b1b20 --- /dev/null +++ b/resources/basic.puml @@ -0,0 +1,5 @@ +@startuml +hide empty description +[*] -right-> s0 +s0 -right-> s1 +@enduml