sphinx-autoapi
sphinx-autoapi copied to clipboard
A new approach to API documentation in Sphinx.
At what point would localization happen in the generation process, and how can we make contribution to localization on generated documentation an open source effort?
Here is an example scenario: ```python # mypackage/__init__.py from ._submodule import func, PublicClass __all__ = ("func", "PublicClass") # mypackage/_submodule.py class PublicClass: pass def func(a: PublicClass) -> bool: return True ```...
Hi, I am in need for some module docstring post-processing, and it took me rather long to figure out that: 1. `autoapi` also allows (some?) `autodoc-*` events to be captured...
There have been some recent releases of `sphinx-autoapi` which are available on PyPI but the [conda-forge feedstock](https://github.com/conda-forge/sphinx-autoapi-feedstock) is unfortunately a few releases behind. Please could a core dev update the...
Thanks for this plugin, it's really great! I have a package which uses a class decorator to modify some methods of a class. Specifically it wraps coroutines in a sync...
These two tests uses intersphinx, and the marker allows skipping them if there is no network available.
Hi. I found that when using autodoc typehints, the "Parameters" field from `__init__()` is duplicated in the class but without the descriptions. The return type is omitted in the class,...
So, `.. note:: This is a test` is processed correctly in docstrings. but ``` .. note:: This is a test ``` is not working. ``` Something else. .. note:: This...
I'm trying to use `autoapi` to document a package, and am getting the API docs grouped in both "submodules" and "subpackages": Does anyone know 1. The difference between a submodule...
We currently implement a custom parser using astroid. While this allows us to fix issues as needed, we may be able to get faster and more frequent fixes by utilising...