├── .gitignore ├── README.rst ├── handout ├── Makefile ├── api.rst ├── conf.py ├── guide.rst ├── handout.pdf ├── index.rst ├── make.bat ├── quick-rst.rst ├── quick-sphinx.rst ├── tutorial.rst ├── using-sphinx.rst ├── writing-api.rst ├── writing-guide.rst └── writing-tutorial.rst ├── requirements.txt ├── show.sh ├── slides.txt ├── texts ├── guide.txt └── tutorial.txt ├── thumbdrive-setup.sh ├── todo.txt └── triangle-project ├── setup.py └── trianglelib ├── __init__.py ├── shape.py ├── tests.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.pyc 3 | _build 4 | usb 5 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/README.rst -------------------------------------------------------------------------------- /handout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/Makefile -------------------------------------------------------------------------------- /handout/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/api.rst -------------------------------------------------------------------------------- /handout/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/conf.py -------------------------------------------------------------------------------- /handout/guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/guide.rst -------------------------------------------------------------------------------- /handout/handout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/handout.pdf -------------------------------------------------------------------------------- /handout/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/index.rst -------------------------------------------------------------------------------- /handout/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/make.bat -------------------------------------------------------------------------------- /handout/quick-rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/quick-rst.rst -------------------------------------------------------------------------------- /handout/quick-sphinx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/quick-sphinx.rst -------------------------------------------------------------------------------- /handout/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/tutorial.rst -------------------------------------------------------------------------------- /handout/using-sphinx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/using-sphinx.rst -------------------------------------------------------------------------------- /handout/writing-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/writing-api.rst -------------------------------------------------------------------------------- /handout/writing-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/writing-guide.rst -------------------------------------------------------------------------------- /handout/writing-tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/handout/writing-tutorial.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | -------------------------------------------------------------------------------- /show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/show.sh -------------------------------------------------------------------------------- /slides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/slides.txt -------------------------------------------------------------------------------- /texts/guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/texts/guide.txt -------------------------------------------------------------------------------- /texts/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/texts/tutorial.txt -------------------------------------------------------------------------------- /thumbdrive-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/thumbdrive-setup.sh -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/todo.txt -------------------------------------------------------------------------------- /triangle-project/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/triangle-project/setup.py -------------------------------------------------------------------------------- /triangle-project/trianglelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/triangle-project/trianglelib/__init__.py -------------------------------------------------------------------------------- /triangle-project/trianglelib/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/triangle-project/trianglelib/shape.py -------------------------------------------------------------------------------- /triangle-project/trianglelib/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/triangle-project/trianglelib/tests.py -------------------------------------------------------------------------------- /triangle-project/trianglelib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandon-rhodes/sphinx-tutorial/HEAD/triangle-project/trianglelib/utils.py --------------------------------------------------------------------------------