vivliostyle/vfm

Command line option "-r" in help should be "-p"

Closed this issue · 2 comments

Issue Details

  • VFM version
    • 1.0.0-alpha.15
$  vfm --help
... 
  Options
    --style, -s    Custom stylesheet path/URL
    --partial, -r  Output markdown fragments
    --title        Document title (ignored in partial mode)
    --language     Document language (ignored in partial mode)

これらのオプションのうち、 -r が機能しません。長い名前の --partial は機能します。
ソースコードを見たところ、 -r-p の間違いのようです。

vfm/src/cli.ts

Lines 16 to 33 in 5ca4c71

--partial, -r Output markdown fragments
--title Document title (ignored in partial mode)
--language Document language (ignored in partial mode)
Examples
$ vfm input.md
`,
{
flags: {
style: {
type: 'string',
alias: 's',
isMultiple: true,
},
partial: {
type: 'boolean',
alias: 'p',
},

ヘルプ文字列を間違えているだけなので v1.0 として対応します。

修正しました。VFM v1.0.0-alpha.16 に反映される予定です。