From 05915720f97df868e0b7dcff6e9b8eed964b8a90 Mon Sep 17 00:00:00 2001
From: Steve Piercy <web@stevepiercy.com>
Date: Tue, 09 Oct 2018 17:20:26 +0200
Subject: [PATCH] Merge pull request #3380 from stevepiercy/docs-quick-tutorial-update

---
 docs/quick_tutorial/ini.rst |   49 ++++++++++++++++++++++++-------------------------
 1 files changed, 24 insertions(+), 25 deletions(-)

diff --git a/docs/quick_tutorial/ini.rst b/docs/quick_tutorial/ini.rst
index 90f6600..0bb7da1 100644
--- a/docs/quick_tutorial/ini.rst
+++ b/docs/quick_tutorial/ini.rst
@@ -32,49 +32,48 @@
 Steps
 =====
 
-#. First we copy the results of the previous step:
+#.  First we copy the results of the previous step:
 
-   .. code-block:: bash
+    .. code-block:: bash
 
-       cd ..; cp -r package ini; cd ini
+        cd ..; cp -r package ini; cd ini
 
-#. Our ``ini/setup.py`` needs a :term:`Setuptools` :term:`entry point` in the ``setup()`` function:
+#.  Our ``ini/setup.py`` needs a :term:`Setuptools` :term:`entry point` in the ``setup()`` function:
 
-   .. literalinclude:: ini/setup.py
-       :linenos:
+    .. literalinclude:: ini/setup.py
+        :linenos:
+        :emphasize-lines: 13-17
 
-#. We can now install our project, thus generating (or re-generating) an "egg"
-   at ``ini/tutorial.egg-info``:
+#.  We can now install our project, thus generating (or re-generating) an "egg" at ``ini/tutorial.egg-info``:
 
-   .. code-block:: bash
+    .. code-block:: bash
 
-       $VENV/bin/pip install -e .
+        $VENV/bin/pip install -e .
 
-#. Let's make a file ``ini/development.ini`` for our configuration:
+#.  Let's make a file ``ini/development.ini`` for our configuration:
 
-   .. literalinclude:: ini/development.ini
-       :language: ini
-       :linenos:
+    .. literalinclude:: ini/development.ini
+        :language: ini
+        :linenos:
 
-#. We can refactor our startup code from the previous step's ``app.py`` into
-   ``ini/tutorial/__init__.py``:
+#.  We can refactor our startup code from the previous step's ``app.py`` into ``ini/tutorial/__init__.py``:
 
-   .. literalinclude:: ini/tutorial/__init__.py
-       :linenos:
+    .. literalinclude:: ini/tutorial/__init__.py
+        :linenos:
 
-#. Now that ``ini/tutorial/app.py`` isn't used, let's remove it:
+#.  Now that ``ini/tutorial/app.py`` isn't used, let's remove it:
 
-   .. code-block:: bash
+    .. code-block:: bash
 
-       rm tutorial/app.py
+        rm tutorial/app.py
 
-#. Run your Pyramid application with:
+#.  Run your Pyramid application with:
 
-   .. code-block:: bash
+    .. code-block:: bash
 
-       $VENV/bin/pserve development.ini --reload
+        $VENV/bin/pserve development.ini --reload
 
-#. Open http://localhost:6543/.
+#.  Open http://localhost:6543/.
 
 Analysis
 ========

--
Gitblit v1.9.3