use monospace everywhere

This commit is contained in:
Ferrari Martino Giordano
2024-07-25 17:34:48 +02:00
parent 3c9b4e3161
commit b6cd0994ea
2 changed files with 10 additions and 4 deletions
+3 -1
View File
@@ -13,7 +13,9 @@ def doc_state_machine(name, obj):
graph = f"digraph {name}" + "{\n"
graph += "rankdir = LR;\n"
# graph += "layout = circo;\n"
graph += 'node [shape=egg, style="filled"];\n'
graph += 'fontname="monospace";\n'
graph += 'node [shape=egg, style="filled", fontname="monospace"];\n'
graph += 'edge [fontname="monospace"];\n'
first = True
for key in obj:
if key[0] == "+":