diff --git a/page_creation.rst b/page_creation.rst index 5d82850d410..0faa564560e 100644 --- a/page_creation.rst +++ b/page_creation.rst @@ -165,11 +165,13 @@ To get a list of *all* of the routes in your system, use the ``debug:router`` co You should see your ``app_lucky_number`` route in the list: -================== ======== ======== ====== =============== -Name Method Scheme Host Path -================== ======== ======== ====== =============== -app_lucky_number ANY ANY ANY /lucky/number -================== ======== ======== ====== =============== +.. code-block:: terminal + + ---------------- ------- ------- ----- -------------- + Name Method Scheme Host Path + ---------------- ------- ------- ----- -------------- + app_lucky_number ANY ANY ANY /lucky/number + ---------------- ------- ------- ----- -------------- You will also see debugging routes besides ``app_lucky_number`` -- more on the debugging routes in the next section.