strathausen/dracula

Renderer for Graphviz graphs?

LeMoussel opened this issue · 1 comments

Is it possible to display Graphviz graphs (xdot renderer) with vivagraph?

Example of Graphviz dot file

digraph G {
0 [label="A"];
1 [label="B"];
2 [label="C"];
3 [label="D"];
4 [label="E"];
0 -> 1 [ ];
0 -> 3 [ ];
1 -> 2 [ ];
1 -> 4 [ ];
2 -> 3 [ ];
3 -> 4 [ ];
}

Would this not be possible if Dracula is combined with Viz.js (https://github.com/mdaines/viz.js)? I have no idea if it is possible to convert a Viz object into a Graph object.