User Tools

This is an old revision of the document!


graph.gd
digraph{
    rankdir=LR;
    graph [fontcolor="green"]
    s [label="sakhr"]
    mia [label="miamoure"]
    mirror [label="mirrorstepper"]
    mia -> s [label="married" dir="both"]
    s -> mirror [label="sidepiece" dir="both"]
    mia -> mirror [label="lesbian lovers" dir="both"]
}
render.sh
cd ~/Desktop
dot graph.txt -Tpng >community_love_triangle.png

also note to self: “why am i getting light gray fonts on a white background???” something about emacs' svg renderer, :shrug:

More information