()
| 145 | listType = ""; |
| 146 | }; |
| 147 | const flushQuote = () => { |
| 148 | if (!quoteLines.length) return; |
| 149 | out.push(`<blockquote>${quoteLines.map((item) => `<p>${renderInlineMarkdown(item)}</p>`).join("")}</blockquote>`); |
| 150 | quoteLines = []; |
| 151 | }; |
| 152 | const flushCode = () => { |
| 153 | if (!inCode) return; |
| 154 | out.push(`<pre><code>${window.escapeHtml ? window.escapeHtml(codeLines.join("\n")) : codeLines.join("\n")}</code></pre>`); |
no test coverage detected