Right now private methods are generated. It's necessary to add an option to not show those private methods. This is [the line](https://github.com/neogeek/doxdox-parser-dox/blob/a9f24453b8245c231f2c033292ca4ab2d8c2edcc/index.js#L59) that would need changing (I think): From -> ``` .filter(method => !method.ignore && method.ctx) ``` To -> ``` .filter(method => !method.ignore && !method.isPrivate && method.ctx) ```