Xelatex, while processing graphviz code doubles the hashmark (#) char before the RGB color specification.
E.g. latex/graphviz code:
\digraph [scale=1]{mygraph} {
node [color="#365559"]
a->b
}
Resulting mygraph.dot:
digraph mygraph {
node [color="##365559"]
a->b
}
How do I overcome this {bug/feature}, without touching the shell (e.g. sed)?
