magjac/graphviz-visual-editor

Edges to grouped nodes not working (curly braces)

mcp292 opened this issue · 2 comments

mcp292 commented
digraph mwe {
  works -> {yes, no}
}

Edit in playground.

magjac commented

Comma is not a valid separator in the DOT language. Remove it or use a semicolon instead.

mcp292 commented

Thanks, not sure how I picked up that habit.