(content: string)
| 220 | * - Converts **bold** to ANSI bold |
| 221 | */ |
| 222 | export function formatResponse(content: string): string { |
| 223 | let result = content; |
| 224 | result = transformMarkdownTables(result); |
| 225 | result = transformBold(result); |
| 226 | return result; |
| 227 | } |
no test coverage detected