diagraph icon indicating copy to clipboard operation
diagraph copied to clipboard

Record-based nodes support

Open RatCornu opened this issue 8 months ago • 0 comments

Hello! While trying to render a graph like this one:

digraph structs {
    node [shape=record];
    struct1 [label="<f0> left|<f1> mid\ dle|<f2> right"];
    struct2 [label="<f0> one|<f1> two"];
    struct3 [label="hello\nworld |{ b |{c|<here> d|e}| f}| g | h"];
    struct1:f1 -> struct2:f0;
    struct1:f2 -> struct3:here;
}

I saw that currently record-based nodes are not supported by diagraph. I think it would be great to add this feature!

RatCornu avatar Jun 29 '24 18:06 RatCornu