Skip to content

Commit a4e4a3a

Browse files
committed
Docs: Fix CLI syntax for --bullets
1 parent 4ba79a2 commit a4e4a3a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Usage: markdown-toc [options] <input>
4949
--append: Append a string to the end of the TOC
5050
5151
--bullets: Bullets to use for items in the generated TOC
52-
(Supports multiple bullets: --bullets "*" --bullets "-" --bullets "+")
52+
(Supports multiple bullets: --bullets="*" --bullets="-" --bullets="+")
5353
(Default is "*".)
5454
5555
--maxdepth: Use headings whose depth is at most maxdepth
@@ -356,4 +356,4 @@ Released under the [MIT License](LICENSE).
356356

357357
***
358358

359-
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on September 19, 2017._
359+
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on September 19, 2017._

cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if (args._.length !== 1) {
2727
' --append: Append a string to the end of the TOC',
2828
'',
2929
' --bullets: Bullets to use for items in the generated TOC',
30-
' (Supports multiple bullets: --bullets "*" --bullets "-" --bullets "+")',
30+
' (Supports multiple bullets: --bullets="*" --bullets="-" --bullets="+")',
3131
' (Default is "*".)',
3232
'',
3333
' --maxdepth: Use headings whose depth is at most maxdepth',
@@ -37,7 +37,7 @@ if (args._.length !== 1) {
3737
'',
3838
' --no-stripHeadingTags: Do not strip extraneous HTML tags from heading',
3939
' text before slugifying',
40-
'',
40+
'',
4141
' --indent: Provide the indentation to use - defaults to \' \'',
4242
' (to specify a tab, use the bash-escaped $\'\\t\')'
4343
].join('\n'));

0 commit comments

Comments
 (0)