Closed joscha closed 5 years ago
without this fix graphviz.digraph('my-id'); would produce digraph my-id { which is invalid, instead it should produce digraph "my-id" {
graphviz.digraph('my-id');
digraph my-id {
digraph "my-id" {
without this fix
graphviz.digraph('my-id');
would producedigraph my-id {
which is invalid, instead it should producedigraph "my-id" {