Reputation: 2027
I am trying to use Sphinx to document a project, but I cannot figure out how to use intersphinx. I use this line:
:py:meth:`math.sin`
to add the link, but in the output, it shows up bold, not as a link. Although that line does not work, both the following do:
:py:meth:`dict.items`
:py:class:`zipfile.ZipFile`
My intersphinx_mapping value in the conf.py file is:
intersphinx_mapping = {'python':('http://docs.python.org/2.7', None)}
Upvotes: 9
Views: 4705
Reputation: 45652
Have you read the documentation for intersphinx?
Edit
Got it to work using this:
***
TRY
***
My try
======
sin
:py:func:`math.cos`
pop
:py:meth:`dict.pop`
dict
:py:meth:`dict.items`
zipfile
:py:class:`zipfile.ZipFile`
Read about the constructs here crossreference
Upvotes: 7