I'm trying to set up an API using the autodoc and autosummary extensions. 

At the top of the rst page, I've got:

.. currentmodule:: <module>
   :toctree: <folder for stub pages>

    <classes>

Below that I've got:

.. automodule:: <module>
   :members:

and in the conf.py, I've got:

autosummary_generate = ['<module>']

and 

extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary']

... this produces the stub pages, plus a page with the summary table at top 
and the full API below. As is, the class names in the summary table link to 
the full API below -- but I'd like them to link to the stub pages instead. 
In fact, I'd like to be able to link to them without having to include the 
full API in the doc. Is that possible?

-- 
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 http://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to