Skip to content

Commit cbc240a

Browse files
committed
remove loose parameter & fix man --test typo
1 parent 0f43e91 commit cbc240a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

lib/marked.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ Parser.prototype.tok = function() {
12701270
? this.parseText()
12711271
: this.tok();
12721272
}
1273-
return this.renderer.listitem(body, task, checked, loose);
1273+
return this.renderer.listitem(body, task, checked);
12741274
}
12751275
case 'html': {
12761276
// TODO parse inline content if parameter markdown=1

man/marked.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Benchmarks the test(s).
5252
.B \-\-time
5353
Times The test(s).
5454
.PP
55-
.B \-\-Run
55+
.B \-\-minified
5656
Runs test file(s) as minified.
5757
.RE
5858
.TP

man/marked.1.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,13 @@ OPTIONS
3030

3131
--glob [file] Specify which test to use.
3232

33+
--fix Fixes tests.
34+
3335
--bench Benchmarks the test(s).
3436

3537
--time Times The test(s).
3638

37-
--Run Runs test file(s) as minified.
39+
--minified Runs test file(s) as minified.
3840

3941
-t, --tokens
4042
Output a token stream instead of html.

0 commit comments

Comments
 (0)