From b72d115a103333808c15bdcd9c50797e4e9e4e5d Mon Sep 17 00:00:00 2001 From: "lina.wolf" Date: Sun, 2 Feb 2025 13:34:22 +0100 Subject: [PATCH] [BUGFIX] Fix table and code-block Releases: main, 13.4, 12.4 --- .../ApiOverview/Routing/Introduction.rst | 34 +++++++++++-------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/Documentation/ApiOverview/Routing/Introduction.rst b/Documentation/ApiOverview/Routing/Introduction.rst index 49046d3947..e88104e3ef 100644 --- a/Documentation/ApiOverview/Routing/Introduction.rst +++ b/Documentation/ApiOverview/Routing/Introduction.rst @@ -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::