2014-03-11 12:01:00 +01:00
# Wagtail docs
2015-06-01 17:55:55 +02:00
These are Sphinx docs, automatically built at http://docs.wagtail.io when the master branch is committed to Github. To build them locally, install Wagtail's development requirements (in the root Wagtail directory):
2014-03-11 11:10:04 +01:00
2016-02-05 16:48:01 +01:00
pip install -e .[testing,docs]
2014-03-11 11:10:04 +01:00
2015-05-14 12:18:53 +02:00
To build the documentation for browsing, from this directory run:
2014-03-11 11:10:04 +01:00
2015-10-23 22:04:56 +02:00
make html
2014-03-11 11:10:04 +01:00
2015-05-14 12:18:53 +02:00
then open ``_build/html/index.html`` in a browser.
2014-03-11 18:39:08 +01:00
2015-05-14 12:18:53 +02:00
To rebuild automatically while editing the documentation, from this directory run:
2015-10-23 22:04:56 +02:00
sphinx-autobuild . _build
2014-03-11 12:01:00 +01:00
The online editor at http://rst.ninjs.org/ is a helpful tool for checking reStructuredText syntax.