Writes a paragraph into the buffer.
(self)
| 206 | self.write(f"{'':>{self.current_indent}}{heading}:\n") |
| 207 | |
| 208 | def write_paragraph(self) -> None: |
| 209 | """Writes a paragraph into the buffer.""" |
| 210 | if self.buffer: |
| 211 | self.write("\n") |
| 212 | |
| 213 | def write_text(self, text: str) -> None: |
| 214 | """Writes re-indented text into the buffer. This rewraps and |
no test coverage detected