easyoptions icon indicating copy to clipboard operation
easyoptions copied to clipboard

Boolean options followed by a tab dont get parsed

Open rrg92 opened this issue 8 years ago • 0 comments

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).
```

rrg92 avatar Feb 16 '17 21:02 rrg92