UNPKG

commonmark

Version:

a strongly specified, highly compatible variant of Markdown

6 lines (5 loc) 247 B
var fs = require('fs'); var benchfile = process.argv[2]; var contents = fs.readFileSync(benchfile, 'utf8'); var name = benchfile.replace(/samples\//,'').replace(/\.md/,''); console.log(JSON.stringify(name) + ': '+ JSON.stringify(contents) + ',');