Full-width centred title row (single column).
(text: str)
| 27 | return "╚" + "═" * _LW + "╩" + "═" * _RW + "╝" |
| 28 | |
| 29 | def _banner(text: str) -> str: |
| 30 | """Full-width centred title row (single column).""" |
| 31 | return "║" + text.center(_IW) + "║" |
| 32 | |
| 33 | def _section_title(text: str) -> str: |
| 34 | """Two-column section header row (title on left, blank right).""" |