[Solved] Generating documentation for add-on

I intend to open up my Daz importer addon for external scripting, and to that end I would like to generate documentation for the API. I have briefly looked at sphinx, but so far I haven’t been able to generate anything useful, and I am not sure it is the right tool. Sphinx seems to rely very much on docstrings, which I perhaps should have added, but docstrings seem redundant for Blender operators. If an operator has a bl_description, and its parameters are properties with descriptions, the information is already there without adding docstrings.

Is there some Blender-specific documentation tool that knows about these things?

Never mind, I wrote a documentation generator myself.

If anyone is interested, the generator’s home is https://bitbucket.org/Diffeomorphic/docgen/src/master/. An example of the generated documentation is https://diffeomorphic.blogspot.com/p/daz-operators.html.