summaryrefslogtreecommitdiff
path: root/_i18n/en/_posts/2017-12-04-plantuml-example.md
diff options
context:
space:
mode:
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, 0 insertions, 66 deletions
diff --git a/_i18n/en/_posts/2017-12-04-plantuml-example.md b/_i18n/en/_posts/2017-12-04-plantuml-example.md
deleted file mode 100644
index e45b91a..0000000
--- a/_i18n/en/_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