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
GraphViz (dot) files can't be parsed if the data is in a single line.
For instance this graph is read but nothing is displayed:
digraph mydot { node [color=red, shape=box]; a -> b -> c ->d node [color=pink, shape=circle]; d->e->a->f->j->k->l->o [weight=1, color=black]; }
If we use line breaks, then everything is OK. Test:
digraph mydot {
node [color=red, shape=box];
a -> b -> c ->d
node [color=pink, shape=circle];
d->e->a->f->j->k->l->o
[weight=1, color=black];
}
The text was updated successfully, but these errors were encountered:
GraphViz (dot) files can't be parsed if the data is in a single line.
For instance this graph is read but nothing is displayed:
digraph mydot { node [color=red, shape=box]; a -> b -> c ->d node [color=pink, shape=circle]; d->e->a->f->j->k->l->o [weight=1, color=black]; }
If we use line breaks, then everything is OK. Test:
digraph mydot {
node [color=red, shape=box];
a -> b -> c ->d
node [color=pink, shape=circle];
d->e->a->f->j->k->l->o
[weight=1, color=black];
}
The text was updated successfully, but these errors were encountered: