MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / render_text_markdown

Function render_text_markdown

src/utils/export_renderer.py:389–396  ·  view source on GitHub ↗
(text: str, lines: List[str])

Source from the content-addressed store, hash-verified

387
388
389def render_text_markdown(text: str, lines: List[str]) -> None:
390 if not text:
391 return
392 stripped = strip_top_level_internal_text(text)
393 if not stripped:
394 return
395 lines.append(stripped)
396 lines.append("")
397
398
399def render_unknown_content_markdown(content: Any, lines: List[str]) -> None:

Callers 2

Calls 2

appendMethod · 0.45

Tested by

no test coverage detected