We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I wasn't able to render record shaped nodes. Is it possible to render something like that?
digraph structs { node[shape=record] struct1 [label="<f0> left|<f1> mid\ dle|<f2> right"] struct2 [label="{<f0> one|<f1> two\n\n\n}" shape=Mrecord] struct3 [label="hello\nworld |{ b |{c|<here> d|e}| f}| g | h"] struct1:f1 -> struct2:f0 struct1:f0 -> struct3 }
The text was updated successfully, but these errors were encountered:
Looks like the "Mrecord" shape is not supported. If you just change it to "record" it should render:
https://dot-to-ascii.ggerganov.com/?src_hash=5b908fa7
Sorry, something went wrong.
Thank you, I hope Mrecords will be supported soon
dot-to-ascii is just a simple wrapper around the Graph::Easy perl cli tool, so support depends on when it gets implemented in Graph::Easy.
dot-to-ascii
Graph::Easy
No branches or pull requests
Hi, I wasn't able to render record shaped nodes. Is it possible to render something like that?
The text was updated successfully, but these errors were encountered: