diff --git a/README.md b/README.md index b8766c4..b19cf1c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Usage: markdown-toc [options] --append: Append a string to the end of the TOC --bullets: Bullets to use for items in the generated TOC - (Supports multiple bullets: --bullets "*" --bullets "-" --bullets "+") + (Supports multiple bullets: --bullets="*" --bullets="-" --bullets="+") (Default is "*".) --maxdepth: Use headings whose depth is at most maxdepth @@ -356,4 +356,4 @@ Released under the [MIT License](LICENSE). *** -_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on September 19, 2017._ \ No newline at end of file +_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on September 19, 2017._ diff --git a/cli.js b/cli.js index 87dd4c0..9f2d07a 100755 --- a/cli.js +++ b/cli.js @@ -27,7 +27,7 @@ if (args._.length !== 1) { ' --append: Append a string to the end of the TOC', '', ' --bullets: Bullets to use for items in the generated TOC', - ' (Supports multiple bullets: --bullets "*" --bullets "-" --bullets "+")', + ' (Supports multiple bullets: --bullets="*" --bullets="-" --bullets="+")', ' (Default is "*".)', '', ' --maxdepth: Use headings whose depth is at most maxdepth', @@ -37,7 +37,7 @@ if (args._.length !== 1) { '', ' --no-stripHeadingTags: Do not strip extraneous HTML tags from heading', ' text before slugifying', - '', + '', ' --indent: Provide the indentation to use - defaults to \' \'', ' (to specify a tab, use the bash-escaped $\'\\t\')' ].join('\n'));