|
|
@ -272,9 +272,9 @@ class OutputGenerator: |
|
|
|
self.write(self.end_tag(tag)) |
|
|
|
|
|
|
|
def generate_raw_block_tag(self, tag: str, text: str, attributes: dict[str,str]={}): |
|
|
|
self.writeln(self.start_tag(tag, attributes)) |
|
|
|
self.writeraw(self.start_tag(tag, attributes)) |
|
|
|
self.writeraw(text) |
|
|
|
self.writeln(self.end_tag(tag)) |
|
|
|
self.writeraw(self.end_tag(tag)) |
|
|
|
|
|
|
|
def generate_empty_block_tag(self, tag: str, attributes: dict[str,str]={}): |
|
|
|
self.writeln(self.single_tag(tag, attributes)) |
|
|
|