You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hlindberg edited this page May 11, 2011
·
7 revisions
Test
reStructure test - wonder if graphs are supported in the github implementation?
.. graph::
digraph foo {
rankdir=LR;
size="2.5,2.5"
node [shape = circle];
A [fillcolor = cornflowerblue];
B [fillcolor = red];
C [fillcolor = gold];
A -> C [ label = "A-C" color = cornflowerblue];
A -> B [ label = "A-B" color = red];
A -> A [ label = "WTF?"];
C -> B;
}