()
| 259 | let listItems = []; |
| 260 | |
| 261 | const flushParagraph = () => { |
| 262 | if (!paragraphLines.length) return; |
| 263 | html.push(`<p>${renderInlineMarkdown(paragraphLines.join(" "))}</p>`); |
| 264 | paragraphLines = []; |
| 265 | }; |
| 266 | |
| 267 | const flushQuote = () => { |
| 268 | if (!quoteLines.length) return; |
no test coverage detected