### Flowchart of week42 #### digraph Week42 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step8 [ label = "New inputs..", shape=block, color=red]; step7 [ label = "Some little\n questions", shape=block, color =green]; step6 [ label = "Activity n.10\ns Review", shape=block]; step5 [ label = "Yaml files\n CI/CD Pipelines", shape=block]; step4 [ label = "ReadTheDocs\n GitHub\n Sphinx\n Rest files", shape=block]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week41", shape=block]; step2 [ label = "Week42", shape=oval, color=blue]; step3 [ label = "Week43\n (25.10)", shape=block]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4 [dir=back]; step2 -> step5 [dir=back]; step2 -> step6 [dir=back]; step2 -> step7 [dir=back]; step2 -> step8 [dir=back]; }