easyoptions
easyoptions copied to clipboard
Boolean options followed by a tab dont get parsed
Consider following doc chunk (">" is tabs and "." is spaces)
(...)
##
##Options:
##
##>>>--option1=>>>Doctext...
##>>>--option2>>>>Doctext
The option2 is not recognized, because the script consider that after option is a space.
For this work, a hava to do this:
(...)
##
##Options:
##
##>>>--option1=>>>Doctext...
##>>>--option2.>>>>Doctext (put a space before my first tab).
```