I have autogenerated API docs at the top of my docs directory and a notebook in the notebooks
subdirectory like this:
/src
/mypkg
-- modname.py
/docs
-- index.rst # includes mynotebook.ipyx
-- mypkg.mymod.rst # autogenerated
/notebooks
-- mynotebook.ipyx
In sphinx a reference to modname might look like this:
See also the :py:mod:`mypkg.modname` documentation.
My question is: how can I make a reference inside the notebook that links back to API docs for the module?
I am aware of this question which seemingly addressed the question with this syntax:
[link text](mypkg.mymod.rst#mymod.modname)
In my case, this just returns a "file is not found". I've tried adding ..
How do I this?