harshsikhwal / csdot

A c# based DOT (graphviz) framework
https://graphviz.org/resources/
MIT License
32 stars 6 forks source link

[Subgraph/Clusters] Beautification #28

Open harshsikhwal opened 3 years ago

harshsikhwal commented 3 years ago

If only node exist without attributes, print in same like.

Example: b -- { c e };

should not print as:

    b -- subgraph
    {
        c;
        e;
    }

Takes more Lines in file. Optimization is required.