Setup Sphinx 
============

.. _doc-setup:

Installation
------------

.. _sphinx-installation:

First install sphinx:

.. code-block:: console

   $ apt-get install python3-sphinx

We may want to encourage/force other packages to be installed.


A new documentation folder
--------------------------

.. code-block:: console
   
   $ sphinx-quickstart

(with options, I propose separate source and build?)

Build
-----

.. code-block:: console
   
   $ sphinx-build -M html source/ build/

or

.. code-block:: console
   
   $ make html
