| python Programming Glossary: index.rstUsing sphinx to auto-document a python class, module http://stackoverflow.com/questions/1326796/using-sphinx-to-auto-document-a-python-class-module  sphinx document and add further formatted text to it. My index.rst looks like this Contents .. toctree maxdepth 2 chapter1.rst.. 
 Include a text file *as is* in (Python) Sphinx Docs http://stackoverflow.com/questions/2921724/include-a-text-file-as-is-in-python-sphinx-docs  _build html unaltered . What do I need to alter in conf.py index.rst etc. Here is the layout src index.rst some_doc.rst somefile.txt.. to alter in conf.py index.rst etc. Here is the layout src index.rst some_doc.rst somefile.txt How do I get somefile.txt into the.. into the html build I tried adding a line like this to index.rst Contents .. toctree maxdepth 2 some_doc somefile.txt hoping.. 
 Automatically Generating Documentation for All Python Package Contents http://stackoverflow.com/questions/4616693/automatically-generating-documentation-for-all-python-package-contents  subpackageB  __init__.py  submoduleB1  submoduleB2 index.rst _build _static _templates I've read the quickstart tutorial.. to add my src folder to sys.path and then modified my index.rst to use automodule. So now my index.rst looks like Contents .... then modified my index.rst to use automodule. So now my index.rst looks like Contents .. toctree maxdepth 2 Indices and tables.. 
 |