### Flowchart of week51 #### digraph Week51 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step6 [ label = "Warning..", width=0.5, color=red, fillcolor=red]; step5 [ label = "Repository"]; step4 [ label = "Progress"]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week50", shape=block]; step2 [ label = "Week51", shape=oval, color=blue]; step3 [ label = "End of the year!", shape=star, style=filled, fillcolor=yellow]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4; step2 -> step5; step2 -> step6; }