> Hello. I'm having trouble with the linking from a module to modules and > clases from other packages. I'm sure it's just a conf problem, but the thing > is that I don't know how to solve this. And believe me, I've tried so many > things from several pages and still nothing.
Did you try the intersphinx extension? http://www.sphinx-doc.org/en/stable/ext/intersphinx.html extensions = [ 'sphinx.ext.intersphinx', ] intersphinx_mapping = { 'python': ('http://docs.python.org/3/', None), 'numpy': ('http://docs.scipy.org/doc/numpy/', None), } Then you can use :func:`print`, :class:`numpy.ndarray` etc. cheers, Matthias -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sphinx-users. For more options, visit https://groups.google.com/d/optout.
