From 86d179896001bd867acfe45c79ebb55aa9d53736 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Wed, 25 Oct 2023 20:37:51 -0600 Subject: Add finishing touches --- _posts/2017-12-04-plantuml-example.md | 66 ----------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 _posts/2017-12-04-plantuml-example.md (limited to '_posts/2017-12-04-plantuml-example.md') diff --git a/_posts/2017-12-04-plantuml-example.md b/_posts/2017-12-04-plantuml-example.md deleted file mode 100644 index e45b91a..0000000 --- a/_posts/2017-12-04-plantuml-example.md +++ /dev/null @@ -1,66 +0,0 @@ ---- -layout: post -title: Plantuml example -categories: example -tags: [plantuml] ---- - -## My First PlantUML - -### PlantUML Block-1 -@startuml -Bob -> Alice : hello -@enduml - - -### PlantUML Block-2 -``` plantuml! -Bob -> Alice : hello world -``` - - -### PlantUML Block-3 -@startuml -(*) --> "Initialization" - -if "Some Test" then - -->[true] "Some Activity" - --> "Another activity" - -right-> (*) -else - ->[false] "Something else" - -->[Ending process] (*) -endif -@enduml - - -### PlantUML Block-4 - -@startuml -skinparam handwritten true - -skinparam usecase { - BackgroundColor DarkSeaGreen - BorderColor DarkSlateGray - - BackgroundColor<< Main >> YellowGreen - BorderColor<< Main >> YellowGreen - - ArrowColor Olive - ActorBorderColor black - ActorFontName Courier - - ActorBackgroundColor<< Human >> Gold -} - -User << Human >> -:Main Database: as MySql << Application >> -(Start) << One Shot >> -(Use the application) as (Use) << Main >> - -User -> (Start) -User --> (Use) - -MySql --> (Use) - -@enduml -- cgit v1.2.3