I am trying to document my python packages using Sphinx 1.2.1.
My definition of the rst file contains some description about each modules, usage and adding the autodoc syntax for restructured text as below.
module
------
.. automodule:: RAT.REPORTER.bemrstcreator
:members:
:undoc-members:
:show-inheritance:
The above setup makes a clear html build for me without any problem. It derives the docs from all the class, its associated members etc., but it includes the source code in the html. How can I indicate sphinx not to link the source code of each module?