Skip to content
This repository has been archived by the owner on Apr 26, 2021. It is now read-only.

Commit

Permalink
Update README in response to #76
Browse files Browse the repository at this point in the history
  • Loading branch information
felixSchl committed Oct 4, 2016
1 parent 8116f51 commit 5c4a39d
Showing 1 changed file with 73 additions and 4 deletions.
77 changes: 73 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,8 @@ Here, `--foo` won't be expanded again and hence remain required.
> when it comes down to it. The universal docopt test suite has been adjusted
> accordingly.
* **Better Error reporting.** Let the user of your utility know why his input
was rejected.
* **Better Error reporting.** Let the user of your utility know why input was
rejected and how to fix it
* **Optional arguments.** Neodoc understands `--foo[=BAR]` (or `-f[=<bar>]`) as
an option that can be provided either with or without an argument.
* **Alias matches.** If `--verbose` yields a value, so will `-v` <sub>(given
Expand All @@ -548,8 +548,6 @@ Here, `--foo` won't be expanded again and hence remain required.
```sh
Usage: prog [[<name>] [<type>]]
```
Also refer to issue #44 which will introduce a slight change in behaviour once
completed.
* **No abbreviations:**
`--ver` does not match `--verbose`.
<sub>[(mis-feature in the original implementation)](https://github.com/docopt/docopt/issues/104)</sub>
Expand All @@ -562,7 +560,77 @@ Here, `--foo` won't be expanded again and hence remain required.
1. User input (per `process.argv`)
1. Environment variables (per `[env: ...]` tag)
1. Option defaults (per `[default: ...]` tag)
* **Stricter document layout**. Neodoc imposes more restrictions on the format
of the help text in order to achieve certain goals, such as:
* Neodoc allows associating option aliases over newlines:
```
options:
-f,
--foo this is foo
```
* Neodoc does **not** require 2 spaces between option and argument. Instead,
only those arguments that visually "look like" arguments are considered for
binding (i.e. all-caps: `ARG` and in-angles: `<arg>`):
```
options:
-f,
--foo ARG
```
Should there be any ambiguity, the option can also be explicitly bound:
```
options:
-f,
--foo=ARG
```
The same is true for optional arguments:
```
options:
-f,
--foo [ARG]
-b,
--bar[=ARG]
```
* Neodoc is more conservative on learning about options in order to prevent
subtly introducing options:
```
usage: prog [options]
options:
--foo this is foo, and it is similar to some-command's
--bar in that it does qux.
```
Here, the author is talking about `--bar` in another context, so it should
not be considered an option to the program. Neodoc figures this out based on
indentation of the previous description start.
* Neodoc allows interspersing spaces in between usage layouts:
```
usage:
prog foo bar
prog qux woo
```
it is important to not that in this format (above), identation of the layout
**is required**.
or:
```
usage: prog foo bar
or: prog qux woo
```
* Neodoc requires an `Options:` section title in order to parse any options
(see [#76][issue-76] for discussion). **note: I am interested in a proposal
on how to lift this requirement**.
## License ##
Expand All @@ -577,3 +645,4 @@ See file `LICENSE` for a more detailed description of its terms.
[issue-55]: https://github.com/felixSchl/neodoc/issues/55
[issue-24]: https://github.com/felixSchl/neodoc/issues/24
[issue-57]: https://github.com/felixSchl/neodoc/issues/57
[issue-76]: https://github.com/felixSchl/neodoc/issues/76

0 comments on commit 5c4a39d

Please sign in to comment.