Steve Piercy
2018-10-08 e73977d032b75b165084afba1595c1881b815a28
Align emphasize-lines to setup.py
4 files modified
8 ■■■■ changed files
docs/quick_tutorial/authentication.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/databases.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/forms.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/jinja2.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/authentication.rst
@@ -39,7 +39,7 @@
   .. literalinclude:: authentication/setup.py
    :language: python
    :emphasize-lines: 4
    :emphasize-lines: 6
    :linenos:
#. We can now install our project in development mode:
docs/quick_tutorial/databases.rst
@@ -51,7 +51,7 @@
    .. literalinclude:: databases/setup.py
        :linenos:
        :emphasize-lines: 8-9, 11, 25-26
        :emphasize-lines: 10-11, 13, 34-36
    .. note:: We aren't yet doing ``$VENV/bin/pip install -e .`` because we need to write a script and update configuration first.
docs/quick_tutorial/forms.rst
@@ -40,7 +40,7 @@
#.  Let's edit ``forms/setup.py`` to declare a dependency on Deform, which in turn pulls in Colander as a dependency:
    .. literalinclude:: forms/setup.py
        :emphasize-lines: 4
        :emphasize-lines: 6
        :linenos:
#.  We can now install our project in development mode:
docs/quick_tutorial/jinja2.rst
@@ -33,7 +33,7 @@
    .. literalinclude:: jinja2/setup.py
        :language: python
        :linenos:
        :emphasize-lines: 7
        :emphasize-lines: 9
#.  Install our project and its newly added dependency.