本家rst文法 http://docs.sphinx-users.jp/rest.html
http://sphinx-users.jp/gettingstarted/make_project.html
PythonプロジェクトのドキュメントをSphinxで作成する http://qiita.com/icoxfog417/items/9e2eb932b61aa9b9e427
IntelliJでSphinxドキュメントを書いてみよう http://siosio.hatenablog.com/entry/2012/12/30/223900
PyCharm? (IntelliJ) で Sphinx で楽にドキュメントを書く http://qiita.com/kojionilk/items/1de43c49b8007e3780ce
Sphinxの使い方まとめ http://doc.interio-inc.com/sphinx_man/
という構成にしておいて
>sphinx-apidoc -F -o docs/ apps/
docs内にてHTMLを作成
>make html
>pip install sphinx_rtd_theme
In your conf.py file:
import sphinx_rtd_theme html_theme = "sphinx_rtd_theme" html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]