0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-28 17:13:31 +01:00
wagtail/docs
2014-03-11 11:20:26 +00:00
..
building_your_site.rst
conf.py
contributing.rst
deploying.rst
gettingstarted.rst
index.rst Roadmap page in docs 2014-03-11 11:20:26 +00:00
Makefile
performance.rst
README.md Better docs docs 2014-03-11 11:01:04 +00:00
roadmap.rst Roadmap page in docs 2014-03-11 11:20:26 +00:00
support.rst
wagtail_search.rst

Wagtail docs

These are Sphinx docs, automatically built at http://docs.wagtail.io when the master branch is committed to Github. To build them locally, install Sphinx and the RTD theme:

pip install Sphinx
pip install sphinx-rtd-theme

Then make html from this directory, and open _build/html/index.html in your browser.

To auto-build your local docs when you save:

pip install watchdog
$ watchmedo shell-command \
          --patterns="*.rst" \
          --ignore-pattern='_build/*' \
          --recursive \
          --command='make html'

The online editor at http://rst.ninjs.org/ is a helpful tool for checking reStructuredText syntax.