(renderable: Group)
| 5 | |
| 6 | |
| 7 | def _group_text(renderable: Group) -> list[str]: |
| 8 | return [part.plain for part in renderable.renderables if isinstance(part, Text)] |
| 9 | |
| 10 | |
| 11 | def test_render_preserves_inline_html(): |
no outgoing calls
no test coverage detected