[Django]-Sphinx Note Block in a list under a code block?

5👍

So what works is the following:

Fixed list example
------------------

#. First do spam
#. Then do ``eggs``:

   .. code-block:: python

      some_code_stuff()

   .. note::

      Nobody expects the Spanish Inquisistion

#. Then do spam and ``eggs``.
👤Özer

Leave a comment