Using Sphinx's automodule directive, I am creating an API documentation for all functions in my module from their respective docstrings. The respective .rst file comprises just the following lines:
API Reference
=============
.. automodule:: pkg_name.module_name
:members:
:undoc-members:
:show-inheritance:
I am also integrating a Jupyter notebook into the documentation using nbSphinx.
How can I cross-reference a function, which has been created by the automodule directive, from a markdown cell within the Jupyter notebook?