The Visual Editor seems to have a layout bug when displaying HTML-like labels that contain spaces after tags. This source: ```dot graph g { n [label=<Wow, <font color="blue">some</font> text>]; } ``` Renders as:  Inserting a _second_ space fixes the layout: ```dot graph g { n [label=<Wow, <font color="blue">some</font> text>]; } ``` 