()
| 265 | }; |
| 266 | |
| 267 | const flushQuote = () => { |
| 268 | if (!quoteLines.length) return; |
| 269 | const quoteBody = quoteLines.map((line) => renderInlineMarkdown(line)).join("<br />"); |
| 270 | html.push(`<blockquote><p>${quoteBody}</p></blockquote>`); |
| 271 | quoteLines = []; |
| 272 | }; |
| 273 | |
| 274 | const flushList = () => { |
| 275 | if (!listItems.length || !listType) return; |
no test coverage detected