Graphviz dot - Italic text in HTML table is non-italic
问题 I'm using dot version 2.26.3 The following .dot contents: digraph html { results [shape=none, margin=0, label=< <TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4"> <TR> <TD>Title</TD> </TR> <TR> <TD><I>Description.</I></TD> </TR> </TABLE> >]; } ..should produce a non-italic 'Title' and italic 'Description' when generating an SVG according to the documentation. dot -Tsvg filename.dot -o output/filename.svg However, the description is non-italic as you can see: Any idea why?