We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff127c5 commit 0cd0333Copy full SHA for 0cd0333
test/index.js
@@ -245,7 +245,6 @@ function runBench(options) {
245
}
246
bench('marked (pedantic)', files, marked);
247
248
- // commonmark
249
try {
250
bench('commonmark', files, (() => {
251
const commonmark = require('commonmark');
@@ -259,7 +258,6 @@ function runBench(options) {
259
258
console.log('Could not bench commonmark. (Error: %s)', e.message);
260
261
262
- // markdown-it
263
264
bench('markdown-it', files, (() => {
265
const MarkdownIt = require('markdown-it');
@@ -270,7 +268,6 @@ function runBench(options) {
270
268
console.log('Could not bench markdown-it. (Error: %s)', e.message);
271
269
272
273
- // markdown.js
274
275
bench('markdown.js', files, (() => {
276
const markdown = require('markdown').markdown;
0 commit comments