Files
bugis/test/example.dot
Walter Oggioni 707c74f042
Some checks failed
CI / Build pip package (push) Failing after 13s
CI / Build Docker image (push) Successful in 4m36s
renamed project to Bugis and switch from WSGI@uwsgi to ASGI@granian
2024-10-20 20:35:46 +08:00

27 lines
387 B
Plaintext

digraph D {
subgraph cluster_p {
label = "Parent";
subgraph cluster_c1 {
label = "Child one";
a;
subgraph cluster_gc_1 {
label = "Grand-Child one";
b;
}
subgraph cluster_gc_2 {
label = "Grand-Child two";
c;
d;
}
}
subgraph cluster_c2 {
label = "Child two";
e;
}
}
}