MoinMoin GraphViz parser from ParserMarket/dot.py

GraphViz 에서 [Graph]를 그리는 방법은 세가지(dot, neato, twopi)가 있다. 아래 소스를 각각의 방법으로 그려보면,

digraph G {
    node [style=filled, fillcolor=white]
    yong27 -> cyppi -> neosphere ->  yong27
    neosphere -> asdf -> cyppi

    // a comment /

    yong27 [URL='yong27']   // link to an external URL
    cyppi [URL='cyppi']          
    neosphere [URL='neosphere']
    yong27 [fillcolor=blue]              
}

dot

neato

twopi

web biohackers.net