(fence, content)
| 363 | const TEXTS = ["hello world", "@user mention", "normal prose", "line\ntwo", ""]; |
| 364 | |
| 365 | function makeFencedBlock(fence, content) { |
| 366 | return `${fence}\n${content}\n${fence}`; |
| 367 | } |
| 368 | |
| 369 | const seedCases = [ |
| 370 | // Single fenced block |
no outgoing calls
no test coverage detected