Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 12.4] [BUGFIX] Fix table and code-block #5302

Merged
merged 1 commit into from
Feb 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 20 additions & 14 deletions Documentation/ApiOverview/Routing/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,23 +32,29 @@ Key Terminology

Given a complex link (`URI`, `Uniform Resource Identificator`) like

`https://subdomain.example.com:80/en/about-us/our-team/john-doe/publications/index.xhtml?utm_campaign=seo#start`
.. code-block:: plaintext

https://subdomain.example.com:80/en/about-us/our-team/john-doe/publications/index.xhtml?utm_campaign=seo#start

all of its components can be broken down to:

+----------+------------+----------+-----+------+----------------------+--------------------+----------------+----------------+-------+------------------+----------------+----------------+------------------------+
| https:// | subdomain. | example. | com | :80 | /en | /about-us/our-team | /john-doe | /publications/ | index | .xhtml | ?utm_campaign= | seo | #start |
+==========+============+==========+=====+======+======================+====================+================+================+=======+==================+================+================+========================+
| Protocol | Subdomain | Domain | TLD | Port | Site Language Prefix | Slug | Enhanced Route | | | |
+----------+------------+----------+-----+------+----------------------+--------------------+-----------------------------------------+------------------+----------------+----------------+------------------------+
| | Hostname | | | | Route Enhancer | Route Decorator | Query string | argument value | Location Hash / Anchor |
+----------+-----------------------------+------+----------------------+--------------------+-----------------------------------------+------------------+----------------+----------------+------------------------+
| | Route / Permalink | |
+-----------------------------------------------+--------------------------------------------------------------------------------------------------------+----------------+----------------+------------------------+
| URL (no arguments, unlike the URI) | | | |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+----------------+----------------+------------------------+
| URI (everything) |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
.. table::
:width: 100%
:break: none

+----------+------------+----------+-----+------+----------------------+--------------------+----------------+----------------+-------+------------------+----------------+----------------+------------------------+
| https:// | subdomain. | example. | com | :80 | /en | /about-us/our-team | /john-doe | /publications/ | index | .xhtml | ?utm_campaign= | seo | #start |
+==========+============+==========+=====+======+======================+====================+================+================+=======+==================+================+================+========================+
| Protocol | Subdomain | Domain | TLD | Port | Site Language Prefix | Slug | Enhanced Route | | | |
+----------+------------+----------+-----+------+----------------------+--------------------+-----------------------------------------+------------------+----------------+----------------+------------------------+
| | Hostname | | | | Route Enhancer | Route Decorator | Query string | argument value | Location Hash / Anchor |
+----------+-----------------------------+------+----------------------+--------------------+-----------------------------------------+------------------+----------------+----------------+------------------------+
| | Route / Permalink | |
+-----------------------------------------------+--------------------------------------------------------------------------------------------------------+----------------+----------------+------------------------+
| URL (no arguments, unlike the URI) | | | |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+----------------+----------------+------------------------+
| URI (everything) |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

.. hint::

Expand Down