(html)
| 220 | function renderInlineMarkdown(text) { |
| 221 | const placeholders = []; |
| 222 | const addPlaceholder = (html) => { |
| 223 | const token = `@@MD${placeholders.length}@@`; |
| 224 | placeholders.push({ token, html }); |
| 225 | return token; |
| 226 | }; |
| 227 | |
| 228 | let rendered = text; |
| 229 |
no test coverage detected