Is it possible to draw ASCII diagram using Graphviz?
Something like that:
digraph
{
this -> is
this -> a
a -> test
}
Gives following image:
But I would like to get ASCII representation:
this
/ \
is a
|
test
Maybe you know other tools which understand dot-files format and can draw ascii diagrams?