### Flowchart of work dynamic #### digraph workdynamic { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_0 { color=transparent; step1 [ label = "Work with\n sphinx locally", shape= block,color=blue]; step2 [ label = "Commit and push changes\n with git to\n the remote repo", shape= block, color=blue]; step3 [ label = "RTD automatically make a build\n with the changes detected\n in the repo", shape= block, color=blue]; step4 [ label = "Page update!", shape=doublecircle, color=green]; { rank=same; step1; step2; step3; step4; } } # Steps step1 -> step2 -> step3 -> step4; }