(text: str, lines: List[str])
| 387 | |
| 388 | |
| 389 | def 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 | |
| 399 | def render_unknown_content_markdown(content: Any, lines: List[str]) -> None: |
no test coverage detected