(text: string)
| 7 | const PLACEHOLDER_END = "\uE001"; |
| 8 | |
| 9 | function unwrapMarkdownSourceBlocks(text: string): string { |
| 10 | return text.replace(MARKDOWN_SOURCE_BLOCK_RE, (_, content: string) => |
| 11 | content.trim(), |
| 12 | ); |
| 13 | } |
| 14 | |
| 15 | function escapeHtml(text: string): string { |
| 16 | return text |
no outgoing calls
no test coverage detected