harshsikhwal / csdot

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

[Load Digraph] Node present as string is tokenized to different nodes. #29

Open harshsikhwal opened 3 years ago

harshsikhwal commented 3 years ago

File:

Resources\test\Issues[Load Digraph] Node present as string is tokenized to different nodes\flowchart2.dot

The node

{ rank = same; "past"; "SCCS"; "make"; "Bourne sh"; "yacc"; "cron"; }

is read as:

        {
                rank = "same"
                past;
                SCCS;
                make;
                Bourne;
                sh;
                yacc;
                cron;
        }

Bourne and sh should be same.

Vibaswan commented 3 years ago

Know issue already discussed within double quotes node with no properties has an issue