Description
In the class Parser (rev 680644) close to line 190 there is code:
Parser.java
// the value is an option else if (t.startsWith("-")) {
This line recognizes hyphen like -
But sometimes (when someone has to work with MS Word Docs) this hyphen - can be used instead of -.
So I would like to suggest just adding a simple piece of code like:
Parser.java
// the value is an option else if (t.startsWith("-") || t.startsWith("-")) {
or try to throw an exception like "Option expected not " or "unexpected argument".