We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The dictionary
![Expanded Graph](http://g.gravizo.com/g? digraph ExpandedGraph { size="4,4"; rankdir="LR"; root -> A; node [style=filled,fillcolor=red]; A -> B; B -> C; C -> D; D -> E; node [style=rounded,fillcolor=white]; E -> F; E -> G; A -> H; })
will become
![Collapsed Graph](http://g.gravizo.com/g? digraph CollapsedGraph { size="3,3"; rankdir="LR"; root -> A; node [style=filled,fillcolor=red]; A -> BCDE; node [style=rounded,fillcolor=white]; BCDE -> F; BCDE -> G; A -> H; })
The text was updated successfully, but these errors were encountered:
This change would require the use of cursors that kept track of which node they were in, along with the index of the current character in that node.
Sorry, something went wrong.
No branches or pull requests
The dictionary
![Expanded Graph](http://g.gravizo.com/g?
digraph ExpandedGraph {
size="4,4";
rankdir="LR";
root -> A;
node [style=filled,fillcolor=red];
A -> B;
B -> C;
C -> D;
D -> E;
node [style=rounded,fillcolor=white];
E -> F;
E -> G;
A -> H;
})
will become
![Collapsed Graph](http://g.gravizo.com/g?
digraph CollapsedGraph {
size="3,3";
rankdir="LR";
root -> A;
node [style=filled,fillcolor=red];
A -> BCDE;
node [style=rounded,fillcolor=white];
BCDE -> F;
BCDE -> G;
A -> H;
})
The text was updated successfully, but these errors were encountered: