sphinx-autodoc2 icon indicating copy to clipboard operation
sphinx-autodoc2 copied to clipboard

A Sphinx extension that automatically generates API documentation for your Python packages.

Results 35 sphinx-autodoc2 issues
Sort by recently updated
recently updated
newest added

Updates the requirements on [sphinx](https://github.com/sphinx-doc/sphinx) to permit the latest version. Release notes Sourced from sphinx's releases. Sphinx 7.2.6 Changelog: https://www.sphinx-doc.org/en/master/changes.html Changelog Sourced from sphinx's changelog. Release 7.2.6 (released Sep 13,...

dependencies
python

Add support `index_filename` option. Example: ```python # docs/conf.py autodoc2_index_filename = "index.md" ```

The nested id for the tag appears to be solved, but not sure if it affects other part or not. What I did was setting a breakpoint at https://github.com/sphinx-doc/sphinx/blob/bfce4f54b0fc010b04f0d17ad8b9d47d8c279e1f/sphinx/domains/python/_object.py#L212 and...

I'm packaging your module as an rpm package so I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account. - `python3 -sBm...

On building my packages I'm using `sphinx-build` command with `-n` switch which shows warmings about missing references. These are not critical issues. Full sphinx outpt is in attachment [python-sphinx-autodoc2.sphix_warnins.txt](https://github.com/sphinx-extensions2/sphinx-autodoc2/files/14624128/python-sphinx-autodoc2.sphix_warnins.txt)

The [`autodoc_typehints`](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#confval-autodoc_typehints) setting lets you put the type hints in the parameter list instead of the signature. This is also how https://github.com/tox-dev/sphinx-autodoc-typehints handles type hints, which can be a lot...

When using autodoc2-object and -summary, instead of outputting `Baz` for instance it outputs the full path, meaning `Foo.Bar.Baz`. This duplicates the path when trying to press to an object (hello.rst#Foo.Bar.Foo.Bar.Baz),...

Tested it works, we just need to test the target is in the current module. ``` def render_method(self, item: ItemData) -> t.Iterable[str]: """Create the content for a method.""" short_name =...

`chrisjsewell/sphinx-autodoc2` -> `sphinx-extensions2/sphinx-autodoc2`. Caught this because of `linkcheck`

Hello, My Python package doesn't work well with static analysis since I'm setting `__all__` programmatically at runtime. I also have docstrings which are dynamically modified upon import, avoiding a lot...