Open timactive opened 7 years ago
Hi, I replace and working fine :
function transform (chunk, enc, cb) {
md += chunk + '\n\n'
cb()
},
by
function transform (chunk, enc, cb) {
md += chunk
cb()
},
I try just this
But it's not Interpreted.