How can I change the position in my HTML of the created graph by graphviz if I am using DOT & doxygen?
I using dot and Graphviz in doxygen to create a user manual of my code in HTML. The doxygen code looks somewhat like this: /**<br> *@addtogroup MainProgram * @dot * digraph G { * Main [label = "Main()"]; * START [label = "Start"]; * FINISH [label = "Finish"]; * * START -> Main; * Main -> FINISH; * } * * @enddot */ This of course generates a nice picture. Unfortunately, the picture is not displayed the way I want it in the HTML page. It is always centered on page. I want the alignment to be on the left side of the page. The generated HTML code looks like: <div align="center"> <img src="inline