# HG changeset patch # User Paul Boddie # Date 1688130718 -7200 # Node ID 18dc14ae134504a67b4d9442e7a9c71116a16fc5 # Parent b1a50a92eb36c96f9c1197274542ad67e8d351d9 Fixed block node handling. diff -r b1a50a92eb36 -r 18dc14ae1345 moinformat/serialisers/html/graphviz.py --- a/moinformat/serialisers/html/graphviz.py Fri Jun 30 12:52:37 2023 +0200 +++ b/moinformat/serialisers/html/graphviz.py Fri Jun 30 15:11:58 2023 +0200 @@ -55,11 +55,8 @@ def init(self): self.directives = {} - def start_block(self): - pass - - def end_block(self): - pass + def block(self, block): + self.container(block) def directive(self, directive): if not self.directives.has_key(directive.key):