View Single Post
Is it just me or is the Dot import somehow broken in 5.2.2? When i try to import something like the script below, the arrows are completely messed. I think that this kind of stuff used to work.

digraph G {
rankdir=LR;
null [shape = plaintext label=""]
null -> 1
node [shape=ellipse];
2 [shape=doublecircle];
1 -> 1 [label = "a"];
1 -> 2 [label = "b"];
}