You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return&properties, fmt.Errorf("unsupported graph type '%s'. Supported types: 'graph' or 'flowchart' with an optional direction (TD, TB, BT, LR, RL)", strings.TrimSpace(lines[0]))
382
+
}
383
+
iflen(fields) >2 {
384
+
return&properties, fmt.Errorf("unexpected tokens after graph direction: %q", strings.Join(fields[2:], " "))
385
+
}
386
+
387
+
// Mermaid defaults to top-down when no direction is given. The renderer only
388
+
// lays out along the horizontal (LR) or vertical (TD) axis; the reverse
389
+
// directions RL and BT are accepted but drawn on their axis without the
0 commit comments