()
| 2631 | quoteLines = []; |
| 2632 | }; |
| 2633 | const flushCode = () => { |
| 2634 | if (!inCode) return; |
| 2635 | out.push(`<pre><code>${escapeHtml(codeLines.join("\n"))}</code></pre>`); |
| 2636 | inCode = false; |
| 2637 | codeLines = []; |
| 2638 | }; |
| 2639 | |
| 2640 | for (const rawLine of lines) { |
| 2641 | const line = rawLine.replace(/\t/g, " "); |
no test coverage detected