nikeee / edotor.net

Your favourite Graphviz editor
https://edotor.net
MIT License
176 stars 21 forks source link

Can't not render Multiple edges #68

Closed Honghe closed 9 months ago

Honghe commented 9 months ago
digraph D {
  A -> {B, C, D} -> {F}
}

image

Code reference: https://renenyffenegger.ch/notes/tools/Graphviz/examples/index

Honghe commented 9 months ago

Resolved.

digraph D {
  A -> {B C D} -> {F}
}