Below is a chunk of graphvis script that will reveal incoming and outgoing links to any page it is added to.
DOT strict digraph rankdir=LR node [shape=box style="solid,rounded,filled" fillcolor=lightyellow penwidth=3 color=red] HERE NODE node [style="solid,rounded,filled" fillcolor=white penwidth=3 color=blue] edge [style=solid penwidth=1 color=black] BACKLINKS NODE -> HERE node [style="dotted,rounded,filled" penwidth=6 fillcolor=white color=grey] edge [style=dotted penwidth=4 color=grey] HERE BACKLINKS NODE -> HERE STATIC strict digraph {rankdir=LR node [shape=box style="solid,rounded,filled" fillcolor=lightyellow penwidth=3 color=red] "Welcome Visitors" node [style="solid,rounded,filled" fillcolor=white penwidth=3 color=blue] edge [style=solid penwidth=1 color=black] "Good and Cheap recipes" -> "Welcome Visitors" "Search for 'neighborhood'" -> "Welcome Visitors" node [style="dotted,rounded,filled" penwidth=6 fillcolor=white color=grey] edge [style=dotted penwidth=4 color=grey] node [style="dotted,rounded,filled" penwidth=6 fillcolor=white color=grey] edge [style=dotted penwidth=4 color=grey]}