Files
zk-data-agent/src/ink.py
T
Abdelrahman Abdallah 27aff5611b first commit
2026-04-01 21:51:49 +02:00

7 lines
151 B
Python

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