diff --git a/docs/intro/whatsnext.txt b/docs/intro/whatsnext.txt index 66b759b769..0949b2299e 100644 --- a/docs/intro/whatsnext.txt +++ b/docs/intro/whatsnext.txt @@ -41,14 +41,14 @@ different needs: to Django -- or to web development in general. It doesn't cover anything in depth, but instead gives a high-level overview of how developing in Django "feels". - + * The :ref:`topic guides `, on the other hand, dive deep into individual parts of Django. There are complete guides to Django's :ref:`model system `, :ref:`template engine `, :ref:`forms framework `, and much more. - - This is probably where you'll want to spent most of your time; if you work + + This is probably where you'll want to spend most of your time; if you work your way through these guides you should come out knowing pretty much everything there is to know about Django. @@ -67,14 +67,14 @@ different needs: methods, and modules are kept in the :ref:`reference `. This is where you'll turn to find the details of a particular function or whathaveyou. - + * Finally, there's some "specialized" documentation not usually relevant to most developers. This includes the :ref:`release notes `, :ref:`documentation of obsolete features `, :ref:`internals documentation ` for those who want to add code to Django itself, and a :ref:`few other things that simply don't fit elsewhere `. - + How documentation is updated ============================ @@ -160,7 +160,7 @@ Django document: .. code-block:: bash $ grep -r max_length /path/to/django/docs/ - + As HTML, locally ---------------- @@ -170,29 +170,29 @@ You can get a local copy of the HTML documentation following a few easy steps: plain text to HTML. You'll need to install Sphinx by either downloading and installing the package from the Sphinx website, or by Python's ``easy_install``: - + .. code-block:: bash - + $ easy_install Sphinx - + * Then, just use the included ``Makefile`` to turn the documentation into HTML: - + .. code-block:: bash - + $ cd path/to/django/docs $ make html - + You'll need `GNU Make`__ installed for this. - + * The HTML documentation will be placed in ``docs/_build/html``. - + .. warning:: At the time of this writing, Django's using a version of Sphinx not yet released, so you'll currently need to install Sphinx from the source. We'll fix this shortly. - + __ http://sphinx.pocoo.org/ __ http://www.gnu.org/software/make/