Files
claw-code/src/ink.py
2026-04-01 03:55:00 +00:00

7 lines
145 B
Python

from __future__ import annotations
def render_markdown_panel(text: str) -> str:
border = '=' * 40
return f"{border}\n{text}\n{border}"