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.parseText()
: this.tok(); : this.tok();
} }
return this.renderer.listitem(body, task, checked, loose); return this.renderer.listitem(body, task, checked);
} }
case 'html': { case 'html': {
// TODO parse inline content if parameter markdown=1 // TODO parse inline content if parameter markdown=1

View File

@ -52,7 +52,7 @@ Benchmarks the test(s).
.B \-\-time .B \-\-time
Times The test(s). Times The test(s).
.PP .PP
.B \-\-Run .B \-\-minified
Runs test file(s) as minified. Runs test file(s) as minified.
.RE .RE
.TP .TP

View File

@ -30,11 +30,13 @@ OPTIONS
--glob [file] Specify which test to use. --glob [file] Specify which test to use.
--fix Fixes tests.
--bench Benchmarks the test(s). --bench Benchmarks the test(s).
--time Times The test(s). --time Times The test(s).
--Run Runs test file(s) as minified. --minified Runs test file(s) as minified.
-t, --tokens -t, --tokens
Output a token stream instead of html. Output a token stream instead of html.