summaryrefslogtreecommitdiff
path: root/_i18n/en/_posts/2017-12-04-plantuml-example.md
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-10-25 20:37:27 -0600
committerHombreLaser <sebastian-440@live.com>2023-10-25 20:37:27 -0600
commit04d8c1c578ec57a7d154e5285b3fe216c4fe2d7f (patch)
treec8171bdd7ac68a84a2322d46b05d70a77d36f62d /_i18n/en/_posts/2017-12-04-plantuml-example.md
parentaae8d0946ec49676aba0ae5e6effa9f4deb57183 (diff)
Add internationalization
Diffstat (limited to '_i18n/en/_posts/2017-12-04-plantuml-example.md')
-rw-r--r--_i18n/en/_posts/2017-12-04-plantuml-example.md66
1 files changed, 66 insertions, 0 deletions
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