Update CLI options help

This commit is contained in:
astefanutti 2015-07-15 18:34:10 +02:00
parent ea977f61a8
commit e7b6eb2711
2 changed files with 4 additions and 4 deletions

View File

@ -46,8 +46,8 @@ url URL of the slides deck
filename Filename of the output PDF file
Options:
--size Size of the slides deck viewport, <width>x<height> notation [1280x720]
--pause Duration in milliseconds before the next slide is exported [1000]
--size Size of the slides deck viewport: <width>x<height> [1280x720]
--pause Duration in milliseconds before each slide is exported [1000]
--screenshots Capture each slide as an image [false]
--screenshots-directory Screenshots output directory [screenshots]
--screenshots-scale Screenshots scaling of [0..1] * size, can be repeated [1]

View File

@ -32,11 +32,11 @@ var parser = require("./libs/nomnom")
default: "1280x720",
callback: parseResolution,
transform: parseResolution,
help: "Size of the slides deck viewport, <width>x<height> notation"
help: "Size of the slides deck viewport: <width>x<height>"
},
pause: {
default: 1000,
help: "Duration in milliseconds before the next slide is exported"
help: "Duration in milliseconds before each slide is exported"
},
screenshots: {
default: false,