-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Lists of nodes doesn't work. #46
Comments
Thanks for your feedback! I've taken a look into the grammar of graphviz:
If I'm not mistaking, according to the grammar, comma-separated node IDs are not valid.
So actually, You can use sub graphs to get a similar behaviour as you intended: {o:a:e o:b:e o:c:e f:a:e f:b:e f:c:e f:d:e f:e:e }
-> {s01:w s02:w s03:w s04:w s05:w} However, the site you linked uses the same graphivz renderer as edotor, which is actually Graphviz. So it seems that Graphviz itself somehow implements this grammar extension, but the language service that provides auto completion doesn't. If the language service detects an error, no graph is attempted to be rendered (thats why you cannot display/link that graph). We can address this the following ways / use these workarounds:
Whats broken either way is that |
A maintainer of graphviz (author maybe?) adviced me to use lists instead of subgraphs, due to how subgraph discard the port information (this is a good lint warning rule btw). Source. I vote for both 2 and 3 |
Yeah, I also noticed that after posting. Thanks for your link, I've asked on their forums about that: I've also noticed your comment on the issue. Thanks! |
Hello. I also use com,a separated list of nodes to have multiple edges to the same node. |
This graph doesn't seem to work. Edotor wasn't even able to export a link to that graph. It seems to dislike the comma separated list if nodes.
The text was updated successfully, but these errors were encountered: