()
| 134 | let codeLines = []; |
| 135 | |
| 136 | const flushParagraph = () => { |
| 137 | if (!paragraph.length) return; |
| 138 | out.push(`<p>${renderInlineMarkdown(paragraph.join(" "))}</p>`); |
| 139 | paragraph = []; |
| 140 | }; |
| 141 | const flushList = () => { |
| 142 | if (!listItems.length) return; |
| 143 | out.push(`<${listType}>${listItems.map((item) => `<li>${renderInlineMarkdown(item)}</li>`).join("")}</${listType}>`); |
no test coverage detected