Format cleanup part 2

Removed label from blocks.
This commit is contained in:
Lauri Koskenniemi 2026-01-02 10:46:21 +02:00
parent 0169505ad3
commit bab47e9b57
4 changed files with 3100 additions and 3264 deletions

View File

@ -40,7 +40,7 @@ def make_link_line(link, config):
return line + "\n" return line + "\n"
def make_block_line(block, config): def make_block_line(block, config):
line = f"subgraph cluster_{block['id']} {{\n{config["subgraph"]}\nlabel=\"{block['label']}\"\n" line = f"subgraph cluster_{block['id']} {{\n{config["subgraph"]}\n"
for node in block["texts"]: for node in block["texts"]:
line += f"{node}\n" line += f"{node}\n"
return line + "}\n\n" return line + "}\n\n"

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 253 KiB

After

Width:  |  Height:  |  Size: 240 KiB