mirror of
https://github.com/mfocko/blog.git
synced 2024-11-10 08:19:07 +01:00
Matej Focko
a868efaee6
* Switch the archiving from the ‹zip› to ‹tar.gz› and ‹tar.bz2› * Adjust the static files to have consistent paths Signed-off-by: Matej Focko <me@mfocko.xyz>
25 lines
No EOL
425 B
Text
25 lines
No EOL
425 B
Text
digraph G {
|
|
node [shape=record];
|
|
|
|
a_node [label="1|2|3|4|5|6|7|8|9"]
|
|
|
|
b_node [label="1|2|3"]
|
|
c_node [label="4|5|6"]
|
|
d_node [label="7|8|9"]
|
|
|
|
a_node -> b_node [label="B"]
|
|
a_node -> c_node [label="C"]
|
|
a_node -> d_node [label="D"]
|
|
|
|
b_node -> "1"
|
|
b_node -> "2"
|
|
b_node -> "3"
|
|
|
|
c_node -> "4"
|
|
c_node -> "5"
|
|
c_node -> "6"
|
|
|
|
d_node -> "7"
|
|
d_node -> "8"
|
|
d_node -> "9"
|
|
} |