Saved DOT format file is unreadable by ATT dotty.
Status: Beta
Brought to you by:
jhenyal
This is the example of unreadable by dotty file,
generated by tintfu.
Is it some kind of my mistake or not?
digraph "query" {
fontname="Courier New Cyr"
"a" [
fixedsize="false"
label="Русский текст"
regular="false"
];
"b" [
fixedsize="false"
regular="false"
];
}
Logged In: NO
Well, it seems that it is the dotty problem...
But anyway, if I try to use some russian text as a label, in
dotty it works correctly if I specify fontname="Courier New
Cyr", but it does not work in your editor :(
And, btw, if you want to specify an attribute for a graph or all
nodes in a graph, you should print something like
{
graph [fontname = "Courier New Cyr"];
node [shape = record,width=.1,height=.1,fontname = "Courier
New Cyr"];
}
not just
{
fontname = "Courier New Cyr"
}
at least for dotty compatibility.
Thanks.