try.docopt.org icon indicating copy to clipboard operation
try.docopt.org copied to clipboard

Try out docopt in browser (Flask app running on Heroku)

Results 6 try.docopt.org issues
Sort by recently updated
recently updated
newest added

http://try.docopt.org/ is currently returning the error below. ![image](https://user-images.githubusercontent.com/4454565/50671091-d0883d00-1023-11e9-9cd2-feae3e0890c5.png) ``` Application error An error occurred in the application and your page could not be served. If you are the application owner,...

Since 80 chars is the "standard" line length, it would be nice if the text area could hold 80 chars (monospaced) without wrapping/scrolling

Allow the use of quoted arguments, e.g. ``` Usage: test ``` with the input `a "b c d"` If tokenization fails, fall back to the original behaviour

Hi , I have a docopt string like """Get PAM list Usage: list_vals_for_prot_sp.py [--chrom=CHROM_NUM default is all] Options: -h --help Show this screen. """ This parses a command like the...

It seems the argv form is passed directly to docopt as a string with no tokenizing, breaking double quoted arguments. An [example](http://try.docopt.org/?doc=Usage%3A%0D%0A++test+%3Carg1%3E+%3Carg2%3E&argv=a+%22b+c+d%22) here. Maybe wrap [this](https://github.com/docopt/try.docopt.org/blob/master/app.py#L52) in `shlex.split` or something...

Hi This is an issue in only the browser based trial. For a command like Usage: pdb_prepare ... [--ref=reference.pdb]([--all]|[--chain=]) [--desc]" If you give the above **doc** string repeat arguments to...