From cbc240ac76ae33bf056853c55fc8d31172480608 Mon Sep 17 00:00:00 2001 From: x13machine Date: Sun, 10 Mar 2019 14:59:58 -0500 Subject: [PATCH] remove loose parameter & fix man --test typo --- lib/marked.js | 2 +- man/marked.1 | 2 +- man/marked.1.txt | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/marked.js b/lib/marked.js index 852c453b84..77128aa388 100644 --- a/lib/marked.js +++ b/lib/marked.js @@ -1270,7 +1270,7 @@ Parser.prototype.tok = function() { ? this.parseText() : this.tok(); } - return this.renderer.listitem(body, task, checked, loose); + return this.renderer.listitem(body, task, checked); } case 'html': { // TODO parse inline content if parameter markdown=1 diff --git a/man/marked.1 b/man/marked.1 index bc1d58ea7f..35ae794c93 100644 --- a/man/marked.1 +++ b/man/marked.1 @@ -52,7 +52,7 @@ Benchmarks the test(s). .B \-\-time Times The test(s). .PP -.B \-\-Run +.B \-\-minified Runs test file(s) as minified. .RE .TP diff --git a/man/marked.1.txt b/man/marked.1.txt index 400f9d9735..caeef7e6d1 100644 --- a/man/marked.1.txt +++ b/man/marked.1.txt @@ -30,11 +30,13 @@ OPTIONS --glob [file] Specify which test to use. + --fix Fixes tests. + --bench Benchmarks the test(s). --time Times The test(s). - --Run Runs test file(s) as minified. + --minified Runs test file(s) as minified. -t, --tokens Output a token stream instead of html.