diff options
| author | Roy Zwambag <royzwambag@gmail.com> | 2018-03-07 22:19:22 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-03-07 16:19:22 -0500 |
| commit | fe32fe161917e95c4037759740df911a6489707c (patch) | |
| tree | dbd4cb32156d1018e249a75dca900b012bbdc7ca /docs/internals/contributing/writing-documentation.txt | |
| parent | 8b25d546b6113bd8db7e3627939d107ebd834fff (diff) | |
Used console directive in "Writing documentation".
Diffstat (limited to 'docs/internals/contributing/writing-documentation.txt')
| -rw-r--r-- | docs/internals/contributing/writing-documentation.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/docs/internals/contributing/writing-documentation.txt b/docs/internals/contributing/writing-documentation.txt index 696691aff4..771792c3de 100644 --- a/docs/internals/contributing/writing-documentation.txt +++ b/docs/internals/contributing/writing-documentation.txt @@ -45,11 +45,17 @@ documentation is transformed into HTML, PDF, and any other output format. __ http://sphinx-doc.org/ __ http://docutils.sourceforge.net/ -To actually build the documentation locally, you'll currently need to install -Sphinx -- ``pip install Sphinx`` should do the trick. +To build the documentation locally, install Sphinx: -Then, building the HTML is easy; just ``make html`` (or ``make.bat html`` on -Windows) from the ``docs`` directory. +.. console:: + + $ pip install Sphinx + +Then from the ``docs`` directory, build the HTML: + +.. console:: + + $ make html To get started contributing, you'll want to read the :ref:`reStructuredText Primer <sphinx:rst-primer>`. After that, you'll want to read about the |
