diff --git a/src/TwigComponent/doc/index.rst b/src/TwigComponent/doc/index.rst
index f58c1dbbd9d..0d40355e739 100644
--- a/src/TwigComponent/doc/index.rst
+++ b/src/TwigComponent/doc/index.rst
@@ -1004,46 +1004,46 @@ You can take full control over the attributes that are rendered by using the
There are a few important things to know about using ``render()``:
- 1. You need to be sure to call your ``render()`` methods before calling ``{{ attributes }}`` or some
+ #. You need to be sure to call your ``render()`` methods before calling ``{{ attributes }}`` or some
attributes could be rendered twice. For instance:
- .. code-block:: html+twig
+ .. code-block:: html+twig
- {# templates/components/MyComponent.html.twig #}
-
- My Component!
-
+ {# templates/components/MyComponent.html.twig #}
+
+ My Component!
+
- {# render component #}
- {{ component('MyComponent', { style: 'color:red;' }) }}
+ {# render component #}
+ {{ component('MyComponent', { style: 'color:red;' }) }}
- {# renders as: #}
- {# style is rendered twice! #}
- My Component!
-
+ {# renders as: #}
+ {# style is rendered twice! #}
+ My Component!
+
- 2. If you add an attribute without calling ``render()``, it will be rendered twice. For instance:
+ #. If you add an attribute without calling ``render()``, it will be rendered twice. For instance:
- .. code-block:: html+twig
+ .. code-block:: html+twig
- {# templates/components/MyComponent.html.twig #}
-
- My Component!
-
+ {# templates/components/MyComponent.html.twig #}
+
+ My Component!
+
- {# render component #}
- {{ component('MyComponent', { style: 'color:red;' }) }}
+ {# render component #}
+ {{ component('MyComponent', { style: 'color:red;' }) }}
- {# renders as: #}
- {# style is rendered twice! #}
- My Component!
-
+ {# renders as: #}
+ {# style is rendered twice! #}
+ My Component!
+
Only
~~~~