* [fix] [10](https://github.com/TylerTemp/docpie/issues/10),
[11](https://github.com/TylerTemp/docpie/issues/11) short help(`-h`) print
full doc
* [new] **breaking change**. [PEP-257](https://www.python.org/dev/peps/pep-0257/)
help message supported. add `helpstyle` for people how need to print
raw docsting as help message (the old way)
that means, when there is extra returning line, extra indent, they will be
trimly. This feature makes `docpie` work as most python doc tool.
This is very useful when your doc needs to be written as:
class Test(object):
def some_fun(self):
"""
Usage: prog hello
"""
and also in this way:
docpie.docpie("\n \n Usage: prog [-h]\n\n\n", ["prog", "-h"])
will give `Usage: prog [-h]\n` instead of `\n \n Usage: prog [-h]\n\n\n\n`
supported value for `helpstyle`: `"python"`(default), `"dedent"`, `"raw"`