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