()
| 2626 | listType = ""; |
| 2627 | }; |
| 2628 | const flushQuote = () => { |
| 2629 | if (!quoteLines.length) return; |
| 2630 | out.push(`<blockquote>${quoteLines.map((item) => `<p>${renderInlineMarkdown(item)}</p>`).join("")}</blockquote>`); |
| 2631 | quoteLines = []; |
| 2632 | }; |
| 2633 | const flushCode = () => { |
| 2634 | if (!inCode) return; |
| 2635 | out.push(`<pre><code>${escapeHtml(codeLines.join("\n"))}</code></pre>`); |
no test coverage detected