mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-13 03:20:59 +00:00
19 lines
687 B
Markdown
19 lines
687 B
Markdown
# 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.
|