4 I have found this patch to be the only way I can float graphs to the right:
7 --- Plugin/graphviz.pm.orig 2012-04-25 10:26:59.531525247 -0400
8 +++ Plugin/graphviz.pm 2012-04-25 10:26:01.282922144 -0400
10 error gettext("failed to run graphviz") if ($sigpipe || $?);
14 + $class = 'class="' . $params{class} if $params{class};
15 return "<img src=\"".urlto($dest, $params{destpage}).
16 - "\" usemap=\"#graph$sha\" />\n".
17 + "\" usemap=\"#graph$sha\" $class />\n".
22 Then I can use `[[!graph class="align-right" ...]]`.. --[[anarcat]]