(&self, content: &str, theme: &Theme)
| 126 | } |
| 127 | |
| 128 | fn render_text(&self, content: &str, theme: &Theme) -> Vec<Line<'static>> { |
| 129 | let renderer = MarkdownRenderer::new(theme.clone()).with_concealed(self.concealed); |
| 130 | renderer.to_lines(content) |
| 131 | } |
| 132 | |
| 133 | fn render_tool_call( |
| 134 | &self, |
no test coverage detected