mirror of
http://10.0.2.1:3031/sauer/claw-code.git
synced 2026-06-30 12:47:05 +10:00
7 lines
145 B
Python
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}"
|