remove loose parameter & fix man --test typo

This commit is contained in:
x13machine 2019-03-10 14:59:58 -05:00
parent 0f43e91e1b
commit cbc240ac76
3 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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.