2021-11-02 00:27:14 +00:00
|
|
|
# -*- mode: snippet -*-
|
2022-03-10 01:14:21 +00:00
|
|
|
# contributor: Howard Abrams
|
2021-11-02 00:27:14 +00:00
|
|
|
# name: activity-diagram
|
|
|
|
# key: activity
|
|
|
|
# condition: (ha/org-nested-in-plantuml-block)
|
|
|
|
# group: plantuml
|
|
|
|
# --
|
|
|
|
' See details at https://plantuml.com/activity-diagram-betastart
|
|
|
|
start
|
|
|
|
|
|
|
|
if (Graphviz installed?) then (yes)
|
|
|
|
:process all\ndiagrams;
|
|
|
|
else (no)
|
|
|
|
:process only
|
|
|
|
__sequence__ and __activity__ diagrams;
|
|
|
|
endif
|
|
|
|
|
|
|
|
stop
|