From 04d8c1c578ec57a7d154e5285b3fe216c4fe2d7f Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Wed, 25 Oct 2023 20:37:27 -0600 Subject: Add internationalization --- _i18n/en/_posts/2017-12-04-plantuml-example.md | 66 ++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 _i18n/en/_posts/2017-12-04-plantuml-example.md (limited to '_i18n/en/_posts/2017-12-04-plantuml-example.md') diff --git a/_i18n/en/_posts/2017-12-04-plantuml-example.md b/_i18n/en/_posts/2017-12-04-plantuml-example.md new file mode 100644 index 0000000..e45b91a --- /dev/null +++ b/_i18n/en/_posts/2017-12-04-plantuml-example.md @@ -0,0 +1,66 @@ +--- +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