diff --git a/typo3/sysext/form/Documentation/D/FormEditor/Index.rst b/typo3/sysext/form/Documentation/D/FormEditor/Index.rst
index 7c4c39161d1707d2ea9e8ba3ffad48dac619bc62..189bd3b1847250877dde9b356ab2383bd64ce700 100644
--- a/typo3/sysext/form/Documentation/D/FormEditor/Index.rst
+++ b/typo3/sysext/form/Documentation/D/FormEditor/Index.rst
@@ -203,7 +203,7 @@ configuration of form elements, without having to click them in order to view
 the detailed configuration in the ``Inspector``. The ``form editor`` requires
 for each form element an inline HTML template and the corresponding JavaScript
 code. Information matching inline HTML templates to the appropriate form
-elements must be configured within :ref:`prototypes.\<prototypeIdentifier>.formeditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`.
+elements must be configured within :ref:`prototypes.prototypeIdentifier.formeditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`.
 At this point, the key identifying the form element follows a convention:
 ``FormElement-<formElementTypeIdentifier>``. The value for the key tells the
 ``form editor`` which inline HTML template should be loaded for the respective
@@ -956,8 +956,8 @@ Subscribe to the event:
 view/inspector/collectionElement/existing/selected
 ++++++++++++++++++++++++++++++++++++++++++++++++++
 
-The ``inspector editors`` :ref:`ValidatorsEditor <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.finisherseditor>`
-and :ref:`FinishersEditor <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+The ``inspector editors`` :ref:`ValidatorsEditor <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.finisherseditor>`
+and :ref:`FinishersEditor <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 are used to display the available validators/ finishers for a form element as a
 select box. Furthermore, these ``inspector editors`` indicate that in the
 ``form definition``, validators/ finishers for the currently selected element
@@ -987,11 +987,11 @@ Subscribe to the event:
 view/inspector/collectionElement/new/selected
 +++++++++++++++++++++++++++++++++++++++++++++
 
-The ``inspector editors`` :ref:`ValidatorsEditor <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.finisherseditor>`
-and :ref:`FinishersEditor <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+The ``inspector editors`` :ref:`ValidatorsEditor <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.finisherseditor>`
+and :ref:`FinishersEditor <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 are used to display the available validators/ finishers for a form element as a
 select box. The onChange event of the select box then calls this event. In
-addition, the ``inspector editor`` :ref:`RequiredValidatorEditor <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+addition, the ``inspector editor`` :ref:`RequiredValidatorEditor <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 calls this event when a checkbox is chosen. EXT:form uses this event to add and
 render the validator/ finisher of the ``form definition`` via ``getFormEditorApp().getViewModel().createAndAddPropertyCollectionElement()``.
 
@@ -1053,9 +1053,9 @@ render all ``inspector editors`` for a form element) and ``getFormEditorApp().ge
 (to render the ``inspector editors`` for a validator/ finisher) call this event
 at the end. Strictly speaking, the ``Inspector`` component in the method
 ``_renderEditorDispatcher()`` calls this event.
-Each ``inspector editor`` has the property :ref:`templateName <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.templatename>`,
+Each ``inspector editor`` has the property :ref:`templateName <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename>`,
 which gives the ``form editor`` two pieces of information. On the one hand the
-``templateName`` must match with a key within the :ref:`prototypes.\<prototypeIdentifier>.formeditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`.
+``templateName`` must match with a key within the :ref:`prototypes.prototypeIdentifier.formeditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`.
 The ``form editor`` can consequently load a corresponding inline HTML template
 for the ``inspector editor``. On the other hand, the ``Inspector`` component
 must be told which JavaScript code should be executed for the
@@ -1273,7 +1273,7 @@ A simple example that registers a custom ``inspector editor`` called 'Inspector-
 view/inspector/removeCollectionElement/perform
 ++++++++++++++++++++++++++++++++++++++++++++++
 
-The ``inspector editor`` :ref:`RequiredValidatorEditor <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+The ``inspector editor`` :ref:`RequiredValidatorEditor <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 calls this event, if the checkbox is deselected. EXT:form uses this event to
 remove the configured required validator ('NotEmpty') from the ``form
 definition`` through the method ``getFormEditorApp().getViewModel().removePropertyCollectionElement()``.
@@ -1726,7 +1726,7 @@ call this event. Strictly speaking, the ``Stage`` component in the method
 ``_renderTemplateDispatcher()`` calls this event. The ``form editor`` requires
 for each form element an inline HTML template the corresponding JavaScript
 code. Information matching inline HTML templates to the appropriate form
-elements must be configured within :ref:`prototypes.\<prototypeIdentifier>.formeditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`.
+elements must be configured within :ref:`prototypes.prototypeIdentifier.formeditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`.
 At this point, the key identifying the form element follows a convention:
 ``FormElement-<formElementTypeIdentifier>``. The value for the key tells the
 ``form editor`` which inline HTML template should be loaded for the respective
diff --git a/typo3/sysext/form/Documentation/I/Concepts/FormEditor/Index.rst b/typo3/sysext/form/Documentation/I/Concepts/FormEditor/Index.rst
index 37deca932073a1555dd818118ac53fd2c7eea0e1..716820b31499418dc3b8ba8d906bda24100fdcf8 100644
--- a/typo3/sysext/form/Documentation/I/Concepts/FormEditor/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Concepts/FormEditor/Index.rst
@@ -232,7 +232,7 @@ to use this element in their manually created YAML definitions or via API anymor
          AdvancedPassword: null
 
 
-The correct way is to unset the :ref:`group property <prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.group>`.
+The correct way is to unset the :ref:`group property <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.group>`.
 This property defines within which group within the ``form editor`` "new Element"
 modal the form element should be shown. Unsetting this property will remove the
 form element safely form the form editor. Check out the following example. The
diff --git a/typo3/sysext/form/Documentation/I/Concepts/FormPlugin/Index.rst b/typo3/sysext/form/Documentation/I/Concepts/FormPlugin/Index.rst
index 4d614863abdc21ad4450f24cd09ffc03552466e4..3b7743e204a931f6b4f1472a629d3e05faf84eb9 100644
--- a/typo3/sysext/form/Documentation/I/Concepts/FormPlugin/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Concepts/FormPlugin/Index.rst
@@ -24,8 +24,8 @@ globally and valid for the whole ``form definition`` . While adding the form
 to a specific page, the backend editor can define a different redirect target. This
 setting is only valid for the page containing the plugin.
 
-Read more about changing the :ref:`general<prototypes.\<prototypeidentifier>.formengine>`
-and :ref:`aspect-specific form plugin configuration<prototypes.\<prototypeIdentifier>.finishersdefinition.\<finisheridentifier>.formengine>`.
+Read more about changing the :ref:`general<prototypes.prototypeIdentifier.formengine>`
+and :ref:`aspect-specific form plugin configuration<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.formengine>`.
 
 
 .. _concepts-formplugin-exclude-override:
diff --git a/typo3/sysext/form/Documentation/I/Concepts/FrontendRendering/Index.rst b/typo3/sysext/form/Documentation/I/Concepts/FrontendRendering/Index.rst
index e8f9d6ac111e355748c59ad135136900d09343b3..fa2028671159e333f739b418e5de28f1789e22e2 100644
--- a/typo3/sysext/form/Documentation/I/Concepts/FrontendRendering/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Concepts/FrontendRendering/Index.rst
@@ -254,7 +254,7 @@ the following translation scenarios are possible:
 
 In Extbase, the validation messages are identified with the help of
 numerical codes (UNIX timestamps). For the same validator, different codes
-are valid. Read more about :ref:`concrete validator configurations <prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>-concreteconfigurations>`.
+are valid. Read more about :ref:`concrete validator configurations <prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations>`.
 
 The look-up process searches for translation keys in all given translation
 files based on the following order:
@@ -328,8 +328,8 @@ the following translation scenarios are possible:
 The look-up process searches for translation keys in all given translation
 files based on the following order:
 
-- ``<formDefinitionIdentifier>.finisher.<finisherIdentifier>.<optionName>``
-- ``finisher.<finisherIdentifier>.<optionName>``
+- ``<formDefinitionIdentifier>.finisher.finisheridentifier.<optionName>``
+- ``finisher.finisheridentifier.<optionName>``
 
 
 Example
diff --git a/typo3/sysext/form/Documentation/I/Concepts/Validators/Index.rst b/typo3/sysext/form/Documentation/I/Concepts/Validators/Index.rst
index 070db9b59b85184f7148e5b733fc65c0d1495213..8fbc8dc9dbbaf34a3a15070eca884ae90d718128 100644
--- a/typo3/sysext/form/Documentation/I/Concepts/Validators/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Concepts/Validators/Index.rst
@@ -53,7 +53,7 @@ Server-side validation
 Alphanumeric validator (:yaml:`Alphanumeric`)
 """""""""""""""""""""""""""""""""""""""""""""
 
-The :ref:`"Alphanumeric validator"<prototypes.<prototypeidentifier>.validatorsdefinition.alphanumeric>`
+The :ref:`"Alphanumeric validator"<prototypes.prototypeIdentifier.validatorsdefinition.alphanumeric>`
 checks for alphanumeric strings. Alphanumeric is defined as a combination of
 alphabetic and numeric characters `[A-Z + 0-9]`.
 
@@ -63,7 +63,7 @@ alphabetic and numeric characters `[A-Z + 0-9]`.
 Number of submitted values validator (:yaml:`Count`)
 """"""""""""""""""""""""""""""""""""""""""""""""""""
 
-The :ref:`"Number of submitted values validator"<prototypes.<prototypeidentifier>.validatorsdefinition.count>`
+The :ref:`"Number of submitted values validator"<prototypes.prototypeIdentifier.validatorsdefinition.count>`
 checks if the given value contains the specified amount of elements. The
 validator has 2 options:
 
@@ -76,7 +76,7 @@ validator has 2 options:
 Date range validator (:yaml:`DateRange`)
 """"""""""""""""""""""""""""""""""""""""
 
-The :ref:`"Date range validator"<prototypes.<prototypeidentifier>.validatorsdefinition.daterange>`
+The :ref:`"Date range validator"<prototypes.prototypeIdentifier.validatorsdefinition.daterange>`
 checks if the given value is a valid DateTime object and in-between a specified
 date range. The range can be defined by providing a minimum and/or maximum date.
 The validator has 2 options:
@@ -100,7 +100,7 @@ and maximum date can be configured through the validator options.
 Date/time validator (:yaml:`DateTime`)
 """""""""""""""""""""""""""""""""""""""
 
-The :ref:`"Date/time validator"<prototypes.<prototypeidentifier>.validatorsdefinition.datetime>`
+The :ref:`"Date/time validator"<prototypes.prototypeIdentifier.validatorsdefinition.datetime>`
 checks if the given value is a valid DateTime object. The date string is
 expected to be formatted according to the `W3C standard <http://www.w3.org/TR/NOTE-datetime.html>`__
 which is `YYYY-MM-DDT##:##:##+##:##`, for example `2005-08-15T15:52:01+00:00`.
@@ -111,7 +111,7 @@ which is `YYYY-MM-DDT##:##:##+##:##`, for example `2005-08-15T15:52:01+00:00`.
 Email validator (:yaml:`EmailAddress`)
 """"""""""""""""""""""""""""""""""""""
 
-The :ref:`"Email validator"<prototypes.<prototypeidentifier>.validatorsdefinition.emailaddress>`
+The :ref:`"Email validator"<prototypes.prototypeIdentifier.validatorsdefinition.emailaddress>`
 checks if the given value is a valid email address. The format of a valid email
 address is defined in `RFC 3696 <https://tools.ietf.org/html/rfc3696>`__.
 The standard allows international characters and the multiple appearance
@@ -123,7 +123,7 @@ of the `@` sign.
 File size validator (:yaml:`FileSize`)
 """"""""""""""""""""""""""""""""""""""
 
-The :ref:`"File size validator"<prototypes.<prototypeidentifier>.validatorsdefinition.filesize>`
+The :ref:`"File size validator"<prototypes.prototypeIdentifier.validatorsdefinition.filesize>`
 validates a file resource regarding its file size. The validator has 2 options:
 
 -   Minimum [:yaml:`options.maximum`]: The minimum filesize to accept. Use the
@@ -141,7 +141,7 @@ depends on the :file:`php.ini` settings of your environment.
 Floating-point number validator (:yaml:`Float`)
 """""""""""""""""""""""""""""""""""""""""""""""
 
-The :ref:`"Floating-point number validator"<prototypes.<prototypeidentifier>.validatorsdefinition.float>`
+The :ref:`"Floating-point number validator"<prototypes.prototypeIdentifier.validatorsdefinition.float>`
 checks if the given value is of type float or a string matching the regular
 expression `[0-9.e+-]`.
 
@@ -151,7 +151,7 @@ expression `[0-9.e+-]`.
 Integer number validator (:yaml:`Integer`)
 """"""""""""""""""""""""""""""""""""""""""
 
-The :ref:`"Integer number validator"<prototypes.<prototypeidentifier>.validatorsdefinition.integer>`
+The :ref:`"Integer number validator"<prototypes.prototypeIdentifier.validatorsdefinition.integer>`
 checks if the given value is a valid integer.
 
 
@@ -160,7 +160,7 @@ checks if the given value is a valid integer.
 Empty validator (:yaml:`NotEmpty`)
 """"""""""""""""""""""""""""""""""
 
-The :ref:`"Empty validator"<prototypes.<prototypeidentifier>.validatorsdefinition.notempty>`
+The :ref:`"Empty validator"<prototypes.prototypeIdentifier.validatorsdefinition.notempty>`
 checks if the given value is not empty (NULL, empty string, empty array or empty
 object).
 
@@ -170,7 +170,7 @@ object).
 Number validator (:yaml:`Number`)
 """""""""""""""""""""""""""""""""
 
-The :ref:`"Number validator"<prototypes.<prototypeidentifier>.validatorsdefinition.number>`
+The :ref:`"Number validator"<prototypes.prototypeIdentifier.validatorsdefinition.number>`
 checks if the given value is a number.
 
 
@@ -179,7 +179,7 @@ checks if the given value is a number.
 Number range validator (:yaml:`NumberRange`)
 """"""""""""""""""""""""""""""""""""""""""""
 
-The :ref:`"Number range validator"<prototypes.<prototypeidentifier>.validatorsdefinition.numberrange>`
+The :ref:`"Number range validator"<prototypes.prototypeIdentifier.validatorsdefinition.numberrange>`
 checks if the given value is a number in the specified range. The validator has
 2 options:
 
@@ -192,7 +192,7 @@ checks if the given value is a number in the specified range. The validator has
 Regular expression validator (:yaml:`RegularExpression`)
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""
 
-The :ref:`"Regular expression validator"<prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression>`
+The :ref:`"Regular expression validator"<prototypes.prototypeIdentifier.validatorsdefinition.regularexpression>`
 checks if the given value matches the specified regular expression. Delimiters
 or modifiers are not supported. The validator has 1 option:
 
@@ -210,7 +210,7 @@ case would be :code:`/^[-a-z0-9]+\.[a-z]{2,6}$/`.
 String length validator (:yaml:`StringLength`)
 """"""""""""""""""""""""""""""""""""""""""""""
 
-The :ref:`"String length validator"<prototypes.<prototypeidentifier>.validatorsdefinition.stringlength>`
+The :ref:`"String length validator"<prototypes.prototypeIdentifier.validatorsdefinition.stringlength>`
 checks if the given value is a valid string and its length is in the specified
 range. The validator has 2 options:
 
@@ -223,7 +223,7 @@ range. The validator has 2 options:
 Non-XML text validator (:yaml:`Text`)
 """""""""""""""""""""""""""""""""""""
 
-The :ref:`"Non-XML text validator"<prototypes.<prototypeidentifier>.validatorsdefinition.text>`
+The :ref:`"Non-XML text validator"<prototypes.prototypeIdentifier.validatorsdefinition.text>`
 checks if the given value is a valid text (contains no XML tags). This basically
 means, that tags are stripped. In this special case quotes are not encoded
 (see `filter_var() <https://php.net/filter_var>`__ for more information.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/Index.rst
index bf4caec5da37bfaeedc535399d4833a03cda280c..5a2601ad7fbaf3ea07ab7a29ac889c2e75527c42 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/Index.rst
@@ -43,12 +43,12 @@ prototypes
       - :ref:`"Form configuration vs. form definition"<concepts-formdefinition-vs-formconfiguration>`
 
 :aspect:`Description`
-      Array which defines the available prototypes. Every key within this array is called the ``<prototypeIdentifier>``.
+      Array which defines the available prototypes. Every key within this array is called the ``prototypeIdentifier``.
 
 
-.. _prototypes.<prototypeidentifier>:
+.. _prototypes.prototypeIdentifier:
 
-<prototypeIdentifier>
+prototypeIdentifier
 ---------------------
 
 :aspect:`Option path`
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/Index.rst
index e3635a73e3356ca1884f57c654424b237689ab6d..e9c91fc2be5716786ed1b0deec33ca49e80e7a82 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/Index.rst
@@ -1,20 +1,20 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition:
+.. _prototypes.prototypeIdentifier.finishersdefinition:
 
 =====================
 [finishersDefinition]
 =====================
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinition-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.*:
+.. _prototypes.prototypeIdentifier.finishersdefinition.*:
 
 [finishersDefinition]
 ---------------------
@@ -47,7 +47,7 @@ Properties
       Array which defines the available finishers. Every key within this array is called the ``<finisherIdentifier>``.
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.<finisheridentifier>:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier:
 
 <finisherIdentifier>
 --------------------
@@ -91,8 +91,8 @@ Properties
                [...]
 
 :aspect:`Related options`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.\<formElementTypeIdentifier>.formEditor.propertyCollections.finishers.[*].identifier"<prototypes.\<prototypeIdentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.propertycollections.finishers.*.identifier>`
-      - :ref:`"[FinishersEditor] selectOptions.[*].value"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.value-finisherseditor>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.formelementtypeidentifier.formEditor.propertyCollections.finishers.[*].identifier"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections.finishers.*.identifier>`
+      - :ref:`"[FinishersEditor] selectOptions.[*].value"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.value-finisherseditor>`
 
 :aspect:`Good to know`
       - :ref:`"Custom finisher implementations"<concepts-finishers-customfinisherimplementations>`
@@ -101,13 +101,13 @@ Properties
       This array key identifies a finisher. This identifier could be used to attach a finisher to a form.
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.<finisheridentifier>-commonproperties:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-commonproperties:
 
 Common <finisherIdentifier> properties
 =============================================
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.implementationClassName:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -125,7 +125,7 @@ implementationClassName
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeidentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom finisher implementations"<concepts-finishers-customfinisherimplementations>`
@@ -134,7 +134,7 @@ implementationClassName
       .. include:: properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.options:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.options:
 
 options
 -------
@@ -149,10 +149,10 @@ options
       Frontend
 
 :aspect:`Mandatory`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom finisher implementations"<concepts-finishers-customfinisherimplementations>`
@@ -161,7 +161,7 @@ options
       Array with finisher options.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.translation.translationFiles:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.translation.translationFiles:
 
 translation.translationFiles
 ----------------------------
@@ -179,17 +179,17 @@ translation.translationFiles
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Translate finisher options"<concepts-frontendrendering-translation-finishers>`
 
 :aspect:`Description`
       Filesystem path(s) to translation files which should be searched for finisher translations.
-      If the property is undefined, - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Form.renderingOptions.translation.translationFiles"<prototypes.\<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.translation.translationfiles>` will be used.
+      If the property is undefined, - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Form.renderingOptions.translation.translationFiles"<prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.translation.translationfiles>` will be used.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.formeditor:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.formeditor:
 
 formEditor
 ----------
@@ -207,7 +207,7 @@ formEditor
       Recommended
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -216,7 +216,7 @@ formEditor
       Array with configurations for the ``form editor``
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -234,7 +234,7 @@ formeditor.iconIdentifier
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -243,7 +243,7 @@ formeditor.iconIdentifier
        .. include:: properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.formeditor.label:
 
 formeditor.label
 ----------------
@@ -261,7 +261,7 @@ formeditor.label
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Translate form editor settings"<concepts-formeditor-translation-formeditor>`
@@ -270,7 +270,7 @@ formeditor.label
       .. include:: properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
@@ -288,7 +288,7 @@ formeditor.predefinedDefaults
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -297,7 +297,7 @@ formeditor.predefinedDefaults
       .. include:: properties/predefinedDefaults.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.formengine:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.formengine:
 
 FormEngine
 ----------
@@ -315,7 +315,7 @@ FormEngine
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -324,7 +324,7 @@ FormEngine
       Array with configurations for the ``form plugin``
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.FormEngine.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.FormEngine.label:
 
 FormEngine.label
 ----------------
@@ -342,7 +342,7 @@ FormEngine.label
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Translate form plugin settings"<concepts-formplugin-translation-formengine>`
@@ -351,7 +351,7 @@ FormEngine.label
       .. include:: properties/formEngine/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.<finisheridentifier>.FormEngine.elements:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.FormEngine.elements:
 
 FormEngine.elements
 -------------------
@@ -369,7 +369,7 @@ FormEngine.elements
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete finishers configuration <prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete finishers configuration <prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Translate form plugin settings"<concepts-formplugin-translation-formengine>`
@@ -378,7 +378,7 @@ FormEngine.elements
       .. include:: properties/formEngine/elements.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.<finisheridentifier>-concreteconfigurations:
+.. _prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier-concreteconfigurations:
 
 Concrete configurations
 =======================
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Closure.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Closure.rst
index 93ef72ae5fd9fe2e784d13a74c9fd71cb80da246..a9d5c512d8855d52746045b0879709481c04368d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Closure.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Closure.rst
@@ -1,20 +1,20 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.closure:
+.. _prototypes.prototypeIdentifier.finishersdefinition.closure:
 
 =========
 [Closure]
 =========
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinitionclosure-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinitionclosure-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.closure.implementationclassname:
+.. _prototypes.prototypeIdentifier.finishersdefinition.closure.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -46,7 +46,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.closure.options.closure:
+.. _prototypes.prototypeIdentifier.finishersdefinition.closure.options.closure:
 
 options.closure
 ---------------
@@ -75,7 +75,7 @@ options.closure
       The closure which is invoked if the finisher is triggered.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.closure.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.closure.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -112,7 +112,7 @@ formeditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.closure.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.closure.formeditor.label:
 
 formeditor.label
 ----------------
@@ -149,7 +149,7 @@ formeditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.closure.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.finishersdefinition.closure.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Confirmation.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Confirmation.rst
index 8bab440bdd69a6cef4e1d731f48616db8ecf1aa4..3194bcd8e7aebc1494732d0909de7abdf03f8b83 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Confirmation.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Confirmation.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.confirmation:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation:
 
 ==============
 [Confirmation]
 ==============
 
-.. _prototypes.<prototypeidentifier>.finishersdefinitionconfirmation-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinitionconfirmation-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.implementationclassname:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -45,7 +45,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.options.message:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.options.message:
 
 options.message
 ---------------
@@ -74,7 +74,7 @@ options.message
       The text which is shown if the finisher is invoked.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.options.contentelementuid:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.options.contentelementuid:
 
 options.contentElementUid
 -------------------------
@@ -99,7 +99,7 @@ options.contentElementUid
       If contentElementUid is set, the option "message" will be ignored.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.options.typoscriptobjectpath:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.options.typoscriptobjectpath:
 
 options.typoscriptObjectPath
 ----------------------------
@@ -123,7 +123,7 @@ options.typoscriptObjectPath
       The option "typoscriptObjectPath" can be used to render the content element (options.contentElementUid) through a typoscript lib.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.options.variables:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.options.variables:
 
 options.variables
 -----------------
@@ -147,7 +147,7 @@ options.variables
       Variables which should be available within the template.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.options.templatename:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.options.templatename:
 
 options.templateName
 --------------------
@@ -171,7 +171,7 @@ options.templateName
       Define a custom template name which should be used.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.options.templaterootpaths:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.options.templaterootpaths:
 
 options.templateRootPaths
 -------------------------
@@ -201,7 +201,7 @@ options.templateRootPaths
       Used to define several paths for templates, which will be tried in reversed order (the paths are searched from bottom to top).
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.options.translation.translationfiles:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.options.translation.translationfiles:
 
 options.translation.translationFiles
 ------------------------------------
@@ -232,7 +232,7 @@ options.translation.translationFiles
       Read :ref:`Translate finisher options<concepts-frontendrendering-translation-finishers>` for more informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -269,7 +269,7 @@ formeditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.formeditor.label:
 
 formeditor.label
 ----------------
@@ -306,7 +306,7 @@ formeditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.confirmation.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.finishersdefinition.confirmation.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/DeleteUploads.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/DeleteUploads.rst
index 819c6293faf5a720b2e640137e05a90bcaf39edc..05a68552340243f69ee1d5f1f0f314aecc720c62 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/DeleteUploads.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/DeleteUploads.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.deleteuploads:
+.. _prototypes.prototypeIdentifier.finishersdefinition.deleteuploads:
 
 ===============
 [DeleteUploads]
 ===============
 
-.. _prototypes.<prototypeidentifier>.finishersdefinitiondeleteuploads-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinitiondeleteuploads-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.deleteuploads.implementationclassname:
+.. _prototypes.prototypeIdentifier.finishersdefinition.deleteuploads.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -45,7 +45,7 @@ implementationClassName
       Array which defines the available finishers. Every key within this array is called the ``<finisherIdentifier>``
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.deleteuploads.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.deleteuploads.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -79,7 +79,7 @@ formeditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.deleteuploads.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.deleteuploads.formeditor.label:
 
 formeditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/EmailToReceiver.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/EmailToReceiver.rst
index 8f5a8e6992bc5dcb41176705467950f6cdff7e00..b5d88b2d106d72c70577308e628caadc131592b5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/EmailToReceiver.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/EmailToReceiver.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.emailtoreceiver:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver:
 
 =================
 [EmailToReceiver]
 =================
 
-.. _prototypes.<prototypeidentifier>.finishersdefinitionemailtoreceiver-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinitionemailtoreceiver-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.implementationclassname:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -45,7 +45,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.subject:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.subject:
 
 options.subject
 ---------------
@@ -74,7 +74,7 @@ options.subject
       Subject of the email.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.recipients:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.recipients:
 
 options.recipients
 ------------------
@@ -113,7 +113,7 @@ options.recipients
          first@example.org: First Recipient
          second@example.org: Second Recipient
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.senderaddress:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.senderaddress:
 
 options.senderAddress
 ---------------------
@@ -141,7 +141,7 @@ options.senderAddress
       Email address of the sender/ visitor (From).
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.sendername:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.sendername:
 
 options.senderName
 ------------------
@@ -169,7 +169,7 @@ options.senderName
       Human-readable name of the sender.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.replytorecipients:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.replytorecipients:
 
 options.replyToRecipients
 -------------------------
@@ -197,7 +197,7 @@ options.replyToRecipients
       Email addresses of to be used as reply-to emails.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.carboncopyrecipients:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.carboncopyrecipients:
 
 options.carbonCopyRecipients
 ----------------------------
@@ -225,7 +225,7 @@ options.carbonCopyRecipients
       Email addresses of the copy recipient.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.blindcarbonCopyrecipients:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.blindcarbonCopyrecipients:
 
 options.blindCarbonCopyRecipients
 ---------------------------------
@@ -253,7 +253,7 @@ options.blindCarbonCopyRecipients
       Email address of the blind copy recipient.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.addhtmlpart:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.addhtmlpart:
 
 options.addHtmlPart
 -------------------
@@ -283,7 +283,7 @@ options.addHtmlPart
       plaintext-only mails.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.attachuploads:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.attachuploads:
 
 options.attachUploads
 ---------------------
@@ -311,7 +311,7 @@ options.attachUploads
       If set, all uploaded items are attached to the email.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.title:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.title:
 
 options.title
 -------------
@@ -341,7 +341,7 @@ options.title
       email body. Do not confuse this field with the subject of the email.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.translation.language:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.translation.language:
 
 options.translation.language
 ----------------------------
@@ -372,7 +372,7 @@ options.translation.language
       Read :ref:`Translate finisher options<concepts-frontendrendering-translation-finishers>` for more informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.translation.translationfiles:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.translation.translationfiles:
 
 options.translation.translationFiles
 ------------------------------------
@@ -403,7 +403,7 @@ options.translation.translationFiles
       Read :ref:`Translate finisher options<concepts-frontendrendering-translation-finishers>` for more informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.partialrootpaths:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.partialrootpaths:
 
 options.partialRootPaths
 ------------------------
@@ -430,7 +430,7 @@ options.partialRootPaths
       Fluid partial paths.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.layoutrootpaths:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.layoutrootpaths:
 
 options.layoutRootPaths
 -----------------------
@@ -457,7 +457,7 @@ options.layoutRootPaths
       Fluid layout paths.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.options.variables:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.options.variables:
 
 options.variables
 -----------------
@@ -484,7 +484,7 @@ options.variables
       Associative array of variables which are available inside the Fluid template.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -518,7 +518,7 @@ formeditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.formeditor.label:
 
 formeditor.label
 ----------------
@@ -552,7 +552,7 @@ formeditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
@@ -600,7 +600,7 @@ formeditor.predefinedDefaults
       .. include:: ../properties/predefinedDefaults.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.formengine.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.formengine.label:
 
 FormEngine.label
 ----------------
@@ -634,7 +634,7 @@ FormEngine.label
 
 
 @ToDo
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtoreceiver.formengine.elements:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtoreceiver.formengine.elements:
 
 FormEngine.elements
 -------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/EmailToSender.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/EmailToSender.rst
index 64f1f47a5f4fc549b5a328c0e01e9e7d54dd351c..88689ef95209b5acf49be983c135f6875225131e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/EmailToSender.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/EmailToSender.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.emailtosender:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender:
 
 =================
 [EmailToSender]
 =================
 
-.. _prototypes.<prototypeidentifier>.finishersdefinitionemailtosender-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinitionemailtosender-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.implementationclassname:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -45,7 +45,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.subject:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.subject:
 
 options.subject
 ---------------
@@ -74,7 +74,7 @@ options.subject
       Subject of the email.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.recipients:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.recipients:
 
 options.recipients
 ------------------
@@ -113,7 +113,7 @@ options.recipients
          first@example.org: First Recipient
          second@example.org: Second Recipient
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.senderaddress:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.senderaddress:
 
 options.senderAddress
 ---------------------
@@ -141,7 +141,7 @@ options.senderAddress
       Email address of the sender/ visitor (From).
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.sendername:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.sendername:
 
 options.senderName
 ------------------
@@ -169,7 +169,7 @@ options.senderName
       Human-readable name of the sender.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.replytorecipients:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.replytorecipients:
 
 options.replyToRecipients
 -------------------------
@@ -197,7 +197,7 @@ options.replyToRecipients
       Email addresses of to be used as reply-to emails.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.carboncopyrecipients:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.carboncopyrecipients:
 
 options.carbonCopyRecipients
 ----------------------------
@@ -225,7 +225,7 @@ options.carbonCopyRecipients
       Email addresses of the copy recipient.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.blindcarboncopyrecipients:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.blindcarboncopyrecipients:
 
 options.blindCarbonCopyRecipients
 ---------------------------------
@@ -253,7 +253,7 @@ options.blindCarbonCopyRecipients
       Email address of the blind copy recipient.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.addhtmlpart:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.addhtmlpart:
 
 options.addHtmlPart
 -------------------
@@ -283,7 +283,7 @@ options.addHtmlPart
       plaintext-only mails.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.attachuploads:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.attachuploads:
 
 options.attachUploads
 ---------------------
@@ -311,7 +311,7 @@ options.attachUploads
       If set, all uploaded items are attached to the email.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.title:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.title:
 
 options.title
 -------------
@@ -341,7 +341,7 @@ options.title
       email body. Do not confuse this field with the subject of the email.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.translation.language:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.translation.language:
 
 options.translation.language
 ----------------------------
@@ -372,7 +372,7 @@ options.translation.language
       Read :ref:`Translate finisher options<concepts-frontendrendering-translation-finishers>` for more informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.translation.translationfiles:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.translation.translationfiles:
 
 options.translation.translationFiles
 ------------------------------------
@@ -403,7 +403,7 @@ options.translation.translationFiles
       Read :ref:`Translate finisher options<concepts-frontendrendering-translation-finishers>` for more informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.partialrootpaths:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.partialrootpaths:
 
 options.partialRootPaths
 ------------------------
@@ -430,7 +430,7 @@ options.partialRootPaths
       Fluid layout paths.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.layoutrootpaths:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.layoutrootpaths:
 
 options.layoutRootPaths
 -----------------------
@@ -457,7 +457,7 @@ options.layoutRootPaths
       Fluid partial paths.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.options.variables:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.options.variables:
 
 options.variables
 -----------------
@@ -484,7 +484,7 @@ options.variables
       Associative array of variables which are available inside the Fluid template.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -518,7 +518,7 @@ formeditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.formeditor.label:
 
 formeditor.label
 ----------------
@@ -552,7 +552,7 @@ formeditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
@@ -600,7 +600,7 @@ formeditor.predefinedDefaults
       .. include:: ../properties/predefinedDefaults.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.formengine.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.formengine.label:
 
 FormEngine.label
 ----------------
@@ -633,7 +633,7 @@ FormEngine.label
       .. include:: ../properties/formEngine/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.emailtosender.formengine.elements:
+.. _prototypes.prototypeIdentifier.finishersdefinition.emailtosender.formengine.elements:
 
 FormEngine.elements
 -------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/FlashMessage.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/FlashMessage.rst
index 06f7ea5f1490932f7399dfc3bdfe46a58fc24e01..d7a861816f886c13a9d20be0f762d03f08a047a5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/FlashMessage.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/FlashMessage.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.flashmessage:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage:
 
 ==============
 [FlashMessage]
 ==============
 
-.. _prototypes.<prototypeidentifier>.finishersdefinitionflashmessage-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinitionflashmessage-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.implementationclassname:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -45,7 +45,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.options.messagebody:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.options.messagebody:
 
 options.messageBody
 -------------------
@@ -74,7 +74,7 @@ options.messageBody
       The flash message body TEXT.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.options.messagetitle:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.options.messagetitle:
 
 options.messageTitle
 --------------------
@@ -103,7 +103,7 @@ options.messageTitle
       The flash message title.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.options.messagearguments:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.options.messagearguments:
 
 options.messageArguments
 ------------------------
@@ -132,7 +132,7 @@ options.messageArguments
       The flash message arguments, if needed.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.options.messagecode:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.options.messagecode:
 
 options.messageCode
 -------------------
@@ -159,7 +159,7 @@ options.messageCode
       The flash message code, if needed.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.options.severity:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.options.severity:
 
 options.severity
 ----------------
@@ -187,7 +187,7 @@ options.severity
       See :t3src:`core/Classes/Type/ContextualFeedbackSeverity.php` cases for the codes.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.options.translation.translationfiles:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.options.translation.translationfiles:
 
 options.translation.translationFiles
 ------------------------------------
@@ -218,7 +218,7 @@ options.translation.translationFiles
       Read :ref:`Translate finisher options<concepts-frontendrendering-translation-finishers>` for more informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -259,7 +259,7 @@ formeditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.formeditor.label:
 
 formeditor.label
 ----------------
@@ -300,7 +300,7 @@ formeditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.flashmessage.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.finishersdefinition.flashmessage.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Redirect.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Redirect.rst
index a6323418448d483410ecad280c6242f9be8a4e2d..68f4eff19c02b03f391d030671dc0f08e072c1c3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Redirect.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/Redirect.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.redirect:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect:
 
 ==========
 [Redirect]
 ==========
 
-.. _prototypes.<prototypeidentifier>.finishersdefinitionredirect-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinitionredirect-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.implementationclassname:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -45,7 +45,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.options.pageuid:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.options.pageuid:
 
 options.pageUid
 ---------------
@@ -73,13 +73,13 @@ options.pageUid
       Redirect to this page uid.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.options.additionalparameters:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.options.additionalparameters:
 
 options.additionalParameters
 ----------------------------
 
 :aspect:`Option path`
-      prototypes.<prototypeIdentifier>.finishersDefinition.Redirect.options.additionalParameters
+      prototypes.prototypeIdentifier.finishersDefinition.Redirect.options.additionalParameters
 
 :aspect:`Data type`
       string
@@ -101,7 +101,7 @@ options.additionalParameters
       Additional parameters which should be used on the target page.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.options.fragment:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.options.fragment:
 
 options.fragment
 ----------------
@@ -130,7 +130,7 @@ options.fragment
       The :html:`#` character can be omitted.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.options.delay:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.options.delay:
 
 options.delay
 -------------
@@ -158,7 +158,7 @@ options.delay
       The redirect delay in seconds.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.options.statuscode:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.options.statuscode:
 
 options.statusCode
 ------------------
@@ -186,7 +186,7 @@ options.statusCode
       The HTTP status code for the redirect. Default is "303 See Other".
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.options.translation.translationfiles:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.options.translation.translationfiles:
 
 options.translation.translationFiles
 ------------------------------------
@@ -217,7 +217,7 @@ options.translation.translationFiles
       Read :ref:`Translate finisher options<concepts-frontendrendering-translation-finishers>` for more informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -256,7 +256,7 @@ formeditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.formeditor.label:
 
 formeditor.label
 ----------------
@@ -295,7 +295,7 @@ formeditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
@@ -334,7 +334,7 @@ formeditor.predefinedDefaults
       .. include:: ../properties/predefinedDefaults.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.formengine.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.formengine.label:
 
 FormEngine.label
 ----------------
@@ -367,7 +367,7 @@ FormEngine.label
       .. include:: ../properties/formEngine/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.redirect.formengine.elements:
+.. _prototypes.prototypeIdentifier.finishersdefinition.redirect.formengine.elements:
 
 FormEngine.elements
 -------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/SaveToDatabase.rst b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/SaveToDatabase.rst
index 8ea36a9780c81108b35de1d8ebdc5de79b942dd0..38b3a7b4d108817e99b3dcc5dc0576433218dc9a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/SaveToDatabase.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/finishers/SaveToDatabase.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.finishersdefinition.savetodatabase:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase:
 
 ================
 [SaveToDatabase]
 ================
 
-.. _prototypes.<prototypeidentifier>.finishersdefinitionsavetodatabase-properties:
+.. _prototypes.prototypeIdentifier.finishersdefinitionsavetodatabase-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.implementationclassname:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -45,7 +45,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.table:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.table:
 
 options.table
 -------------
@@ -73,7 +73,7 @@ options.table
       Insert or update values into this table.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.mode:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.mode:
 
 options.mode
 ------------
@@ -106,7 +106,7 @@ options.mode
       ``update`` will update a given database row with the values from the submitted form and/or some predefined values. 'options.whereClause' is then required.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.whereclause:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.whereclause:
 
 options.whereClause
 -------------------
@@ -134,7 +134,7 @@ options.whereClause
       This where clause will be used for a database update action.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.elements:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.elements:
 
 options.elements
 ----------------
@@ -164,7 +164,7 @@ options.elements
       The value for each key within ``options.elements`` is an array with additional informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.elements.<formelementidentifier>.mapondatabasecolumn:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.elements.<formelementidentifier>.mapondatabasecolumn:
 
 options.elements.<formElementIdentifier>.mapOnDatabaseColumn
 ------------------------------------------------------------
@@ -192,7 +192,7 @@ options.elements.<formElementIdentifier>.mapOnDatabaseColumn
       The value from the submitted form element with the identifier ``<formElementIdentifier>`` will be written into this database column.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.elements.<formelementidentifier>.savefileidentifierinsteadofuid:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.elements.<formelementidentifier>.savefileidentifierinsteadofuid:
 
 options.elements.<formElementIdentifier>.saveFileIdentifierInsteadOfUid
 -------------------------------------------------------------------------------------------
@@ -225,7 +225,7 @@ options.elements.<formElementIdentifier>.saveFileIdentifierInsteadOfUid
       FAL identifier (1:/user_uploads/some_uploaded_pic.jpg) instead.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.elements.<formelementidentifier>.skipifvalueisempty:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.elements.<formelementidentifier>.skipifvalueisempty:
 
 options.elements.<formElementIdentifier>.skipIfValueIsEmpty
 -------------------------------------------------------------------------------
@@ -255,7 +255,7 @@ options.elements.<formElementIdentifier>.skipIfValueIsEmpty
       is valid content.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.elements.<formelementidentifier>.dateformat:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.elements.<formelementidentifier>.dateformat:
 
 options.elements.<formElementIdentifier>.dateFormat
 ---------------------------------------------------
@@ -287,7 +287,7 @@ options.elements.<formElementIdentifier>.dateFormat
       The default value is "U" which means a Unix timestamp.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.databasecolumnmappings:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.databasecolumnmappings:
 
 options.databaseColumnMappings
 ------------------------------
@@ -322,7 +322,7 @@ options.databaseColumnMappings
       will override the value you set within ``options.databaseColumnMappings``.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.databasecolumnmappings.<databasecolumnname>.value:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.databasecolumnmappings.<databasecolumnname>.value:
 
 options.databaseColumnMappings.<databaseColumnName>.value
 ---------------------------------------------------------
@@ -355,7 +355,7 @@ options.databaseColumnMappings.<databaseColumnName>.value
       to the ``options.elements`` configuration variant.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.databasecolumnmappings.<databasecolumnname>.skipifvalueisempty:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.databasecolumnmappings.<databasecolumnname>.skipifvalueisempty:
 
 options.databaseColumnMappings.<databaseColumnName>.skipIfValueIsEmpty
 ----------------------------------------------------------------------
@@ -384,7 +384,7 @@ options.databaseColumnMappings.<databaseColumnName>.skipIfValueIsEmpty
       <databaseColumnName>.value` is empty. Empty means strings without content, whitespace is valid content.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.options.translation.translationfiles:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.options.translation.translationfiles:
 
 options.translation.translationFiles
 ------------------------------------
@@ -415,7 +415,7 @@ options.translation.translationFiles
       Read :ref:`Translate finisher options<concepts-frontendrendering-translation-finishers>` for more informations.
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -451,7 +451,7 @@ formeditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.formeditor.label:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.formeditor.label:
 
 formeditor.label
 ----------------
@@ -487,7 +487,7 @@ formeditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.finishersdefinition.savetodatabase.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.finishersdefinition.savetodatabase.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/formEngine/elements.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/formEngine/elements.rst.txt
index 5d4bb21e1cbb737b8b0f1e4467a94fb6d1e5c8d6..6bf46f1da0bad7ff33b9270af057642036e65d11 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/formEngine/elements.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/formEngine/elements.rst.txt
@@ -1,6 +1,6 @@
 
 
 Every array key must match to the related finisher option name.
-For example, the - :ref:`"[Redirect] finisher"<prototypes.\<prototypeidentifier>.finishersdefinition.redirect>` has the option - :ref:`"pageUid"<prototypes.\<prototypeIdentifier>.finishersdefinition.redirect.options.pageuid>`.
-If you want to make the ``pageUid`` overwritable within the ``form plugin``, then an array key ``pageUid`` has to exists within ``prototypes.<prototypeIdentifier>.finishersDefinition.<finisherIdentifier>.FormEngine.elements``.
-The configuration within ``prototypes.<prototypeIdentifier>.finishersDefinition.Redirect.FormEngine.elements.pageUid`` must follow the TCA syntax.
+For example, the - :ref:`"[Redirect] finisher"<prototypes.prototypeIdentifier.finishersdefinition.redirect>` has the option - :ref:`"pageUid"<prototypes.prototypeIdentifier.finishersdefinition.redirect.options.pageuid>`.
+If you want to make the ``pageUid`` overwritable within the ``form plugin``, then an array key ``pageUid`` has to exists within ``prototypes.prototypeIdentifier.finishersDefinition.finisheridentifier.FormEngine.elements``.
+The configuration within ``prototypes.prototypeIdentifier.finishersDefinition.Redirect.FormEngine.elements.pageUid`` must follow the TCA syntax.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/formEngine/label.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/formEngine/label.rst.txt
index d38132d8a8b925a98a97ed4cff3f6d224f9b675d..05727e6798d0cd5d957869440ce6a4f3d878f7b3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/formEngine/label.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/formEngine/label.rst.txt
@@ -1,5 +1,5 @@
 
 
 Finisher options are overwritable within the ``form plugin``.
-If the "Override finisher settings" checkbox is selected within the ``form plugin``, every finisher who has a - :ref:`"FormEngine"<prototypes.\<prototypeIdentifier>.finishersdefinition.\<finisheridentifier>.formengine>` configuration, is shown in a separate tab.
+If the "Override finisher settings" checkbox is selected within the ``form plugin``, every finisher who has a - :ref:`"FormEngine"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier.formengine>` configuration, is shown in a separate tab.
 ``label`` is the label for such a tab.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/iconIdentifier.rst.txt
index b20f428bab9204fd812b451ba9d3471d51a358e7..f897f2948ed4d921b739769310ce38b0b90a9538 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/iconIdentifier.rst.txt
@@ -1,4 +1,4 @@
 
 
 An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
-This icon will be shown within the - :ref:`"Inspector [CollectionElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>` if the finisher is selected.
+This icon will be shown within the - :ref:`"Inspector [CollectionElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>` if the finisher is selected.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/label.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/label.rst.txt
index fb5c3d4711f5c0a761f08ca557e9c6f72ffdc179..9b71591709b3fab55513b19c9e84237ca09da13a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/label.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/finishersDefinition/properties/label.rst.txt
@@ -1,3 +1,3 @@
 
 
-This label will be shown within the - :ref:`"Inspector [CollectionElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>` if the finisher is selected.
+This label will be shown within the - :ref:`"Inspector [CollectionElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>` if the finisher is selected.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formEditor/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/formEditor/Index.rst
index 07e1f8214977e1c7489b63529eb2ec9cdde5dfb4..fc90eed19f0ff63464fe347c9c22d45d2b3b9957 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formEditor/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formEditor/Index.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formeditor:
+.. _prototypes.prototypeIdentifier.formeditor:
 
 ============
 [formEditor]
 ============
 
 
-.. _prototypes.<prototypeidentifier>.formeditor-properties:
+.. _prototypes.prototypeIdentifier.formeditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formeditor.translationfiles:
+.. _prototypes.prototypeIdentifier.formeditor.translationfiles:
 
 translationFiles
 ----------------
@@ -46,7 +46,7 @@ translationFiles
       Filesystem path(s) to translation files which should be searched for form editor translations.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.dynamicjavascriptmodules.app:
+.. _prototypes.prototypeIdentifier.formeditor.dynamicjavascriptmodules.app:
 
 dynamicJavaScriptModules.app
 ----------------------------
@@ -81,7 +81,7 @@ dynamicJavaScriptModules.app
       ES6 module specifier for the form editor JavaScript app.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.dynamicjavascriptmodules.mediator:
+.. _prototypes.prototypeIdentifier.formeditor.dynamicjavascriptmodules.mediator:
 
 dynamicJavaScriptModules.mediator
 ---------------------------------
@@ -117,7 +117,7 @@ dynamicJavaScriptModules.mediator
       ES6 module specifier for the form editor JavaScript mediator.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.dynamicjavascriptmodules.viewmodel:
+.. _prototypes.prototypeIdentifier.formeditor.dynamicjavascriptmodules.viewmodel:
 
 dynamicJavaScriptModules.viewModel
 ----------------------------------
@@ -153,7 +153,7 @@ dynamicJavaScriptModules.viewModel
       ES6 module specifier for the form editor JavaScript view model.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.dynamicjavascriptmodules.additionalviewmodelmodules:
+.. _prototypes.prototypeIdentifier.formeditor.dynamicjavascriptmodules.additionalviewmodelmodules:
 
 dynamicJavaScriptModules.additionalViewModelModules
 ---------------------------------------------------
@@ -181,7 +181,7 @@ dynamicJavaScriptModules.additionalViewModelModules
       Array with ES6 module specifiers for custom JavaScript modules.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.addinlinesettings:
+.. _prototypes.prototypeIdentifier.formeditor.addinlinesettings:
 
 addInlineSettings
 -----------------
@@ -208,7 +208,7 @@ addInlineSettings
       Adds Javascript Inline Setting. This will occur in TYPO3.settings - object.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.maximumundosteps:
+.. _prototypes.prototypeIdentifier.formeditor.maximumundosteps:
 
 maximumUndoSteps
 ----------------
@@ -240,7 +240,7 @@ maximumUndoSteps
       Define the maximum possible undo steps within the form editor.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.stylesheets:
+.. _prototypes.prototypeIdentifier.formeditor.stylesheets:
 
 stylesheets
 -----------
@@ -273,7 +273,7 @@ stylesheets
       The CSS files to be used by the ``form editor``.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formeditorfluidconfiguration:
+.. _prototypes.prototypeIdentifier.formeditor.formeditorfluidconfiguration:
 
 formEditorFluidConfiguration
 ----------------------------
@@ -311,7 +311,7 @@ formEditorFluidConfiguration
       Basic fluid template search path configurations.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formeditorfluidconfiguration.templatepathandfilename:
+.. _prototypes.prototypeIdentifier.formeditor.formeditorfluidconfiguration.templatepathandfilename:
 
 formEditorFluidConfiguration.templatePathAndFilename
 ----------------------------------------------------
@@ -348,7 +348,7 @@ formEditorFluidConfiguration.templatePathAndFilename
       Internal setting. Template which render the inline HTML templates which are used by the form editor JavaScript.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formeditorfluidconfiguration.partialrootpaths:
+.. _prototypes.prototypeIdentifier.formeditor.formeditorfluidconfiguration.partialrootpaths:
 
 formEditorFluidConfiguration.partialRootPaths
 ---------------------------------------------
@@ -386,7 +386,7 @@ formEditorFluidConfiguration.partialRootPaths
       Array with fluid partial search paths for the inline HTML templates which are used by the form editor JavaScript.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formeditorfluidconfiguration.layoutrootpaths:
+.. _prototypes.prototypeIdentifier.formeditor.formeditorfluidconfiguration.layoutrootpaths:
 
 formEditorFluidConfiguration.layoutRootPaths
 --------------------------------------------
@@ -424,7 +424,7 @@ formEditorFluidConfiguration.layoutRootPaths
       Internal setting.  Array with fluid layout search paths.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formeditorpartials:
+.. _prototypes.prototypeIdentifier.formeditor.formeditorpartials:
 
 formEditorPartials
 ------------------
@@ -496,15 +496,15 @@ formEditorPartials
 :aspect:`Good to know`
       - :ref:`"Form editor"<concepts-formeditor>`
       - :ref:`"Common Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`
-      - :ref:`"available inspector editors"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formEditor.editors-availableinspectoreditors>`
+      - :ref:`"available inspector editors"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formEditor.editors-availableinspectoreditors>`
       - :ref:`"view/inspector/editor/insert/perform"<apireference-formeditor-basicjavascriptconcepts-events-view-inspector-editor-insert-perform>`
 
 :aspect:`Description`
-      Array with mappings for the inline HTML templates. The keys are identifiers which could be used within the JavaScript code. The values are partial paths, relative to :ref:`"prototypes.\<prototypeIdentifier>.formeditor.formEditorFluidConfiguration.partialRootPaths"<prototypes.\<prototypeidentifier>.formeditor.formeditorfluidconfiguration.partialrootpaths>`.
+      Array with mappings for the inline HTML templates. The keys are identifiers which could be used within the JavaScript code. The values are partial paths, relative to :ref:`"prototypes.prototypeIdentifier.formeditor.formEditorFluidConfiguration.partialRootPaths"<prototypes.prototypeIdentifier.formeditor.formeditorfluidconfiguration.partialrootpaths>`.
       The partials content will be rendered as inline HTML. This inline HTML templates can be identified and used by such a key (e.g. "Inspector-TextEditor") within the JavaScript code.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formelementpropertyvalidatorsdefinition:
+.. _prototypes.prototypeIdentifier.formeditor.formelementpropertyvalidatorsdefinition:
 
 formElementPropertyValidatorsDefinition
 ---------------------------------------
@@ -548,8 +548,8 @@ formElementPropertyValidatorsDefinition
                errorMessage: formEditor.formElementPropertyValidatorsDefinition.RegularExpressionPattern.label
 
 :aspect:`Related options`
-      - :ref:`"[TextEditor] propertyValidators"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertyvalidators-texteditor>`
-      - :ref:`"[Typo3WinBrowserEditor] propertyValidators"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertyvalidators-typo3winbrowsereditor>`
+      - :ref:`"[TextEditor] propertyValidators"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalidators-texteditor>`
+      - :ref:`"[Typo3WinBrowserEditor] propertyValidators"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalidators-typo3winbrowsereditor>`
 
 :aspect:`Good to know`
       - :ref:`"Form editor"<concepts-formeditor>`
@@ -561,7 +561,7 @@ formElementPropertyValidatorsDefinition
       for this validator. Every array key within ``formElementPropertyValidatorsDefinition`` must be equal to such an identifier.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formelementpropertyvalidatorsdefinition.<formelementpropertyvalidatoridentifier>.errormessage:
+.. _prototypes.prototypeIdentifier.formeditor.formelementpropertyvalidatorsdefinition.<formelementpropertyvalidatoridentifier>.errormessage:
 
 formElementPropertyValidatorsDefinition.<formElementPropertyValidatorIdentifier>.errorMessage
 ---------------------------------------------------------------------------------------------
@@ -605,8 +605,8 @@ formElementPropertyValidatorsDefinition.<formElementPropertyValidatorIdentifier>
                errorMessage: formEditor.formElementPropertyValidatorsDefinition.RegularExpressionPattern.label
 
 :aspect:`Related options`
-      - :ref:`"[TextEditor] propertyValidators"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertyvalidators-texteditor>`
-      - :ref:`"[Typo3WinBrowserEditor] propertyValidators"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertyvalidators-typo3winbrowsereditor>`
+      - :ref:`"[TextEditor] propertyValidators"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalidators-texteditor>`
+      - :ref:`"[Typo3WinBrowserEditor] propertyValidators"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalidators-typo3winbrowsereditor>`
 
 :aspect:`Good to know`
       - :ref:`"Form editor"<concepts-formeditor>`
@@ -615,7 +615,7 @@ formElementPropertyValidatorsDefinition.<formElementPropertyValidatorIdentifier>
       The error message for an inspector editor property validator which is shown if the validation fails.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formelementgroups:
+.. _prototypes.prototypeIdentifier.formeditor.formelementgroups:
 
 formElementGroups
 -----------------
@@ -653,30 +653,30 @@ formElementGroups
                label: formEditor.formElementGroups.page.label
 
 :aspect:`Related options`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Checkbox.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.ContentElement.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Date.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.date.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Email.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.email.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Fieldset.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.GridRow.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Hidden.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Number.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.number.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Page.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.page.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Password.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.password.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.RadioButton.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.StaticText.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.SummaryPage.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Text.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.text.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.group>`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Url.formEditor.group"<prototypes.\<prototypeIdentifier>.formelementsdefinition.url.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.AdvancedPassword.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Checkbox.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.ContentElement.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Date.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.DatePicker.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Email.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Fieldset.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.FileUpload.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.GridRow.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Hidden.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.ImageUpload.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.MultiCheckbox.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.MultiSelect.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Number.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Page.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Password.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.RadioButton.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.SingleSelect.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.StaticText.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.SummaryPage.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Telephone.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Text.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Textarea.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.group>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Url.formEditor.group"<prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.group>`
 
 :aspect:`Good to know`
       - :ref:`"Form editor"<concepts-formeditor>`
@@ -687,7 +687,7 @@ formElementGroups
       must be equal to an array key within ``formElementGroups``.
 
 
-.. _prototypes.<prototypeidentifier>.formeditor.formelementgroups.<formelementgroupidentifier>.label:
+.. _prototypes.prototypeIdentifier.formeditor.formelementgroups.<formelementgroupidentifier>.label:
 
 formElementGroups.<formElementGroupIdentifier>.label
 ----------------------------------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/Index.rst
index ebea5e0e9b2a03e319503701b564c4b6db884992..9e27afdf0f858b8e5bff9731dc5e801e23038911 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/Index.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition:
+.. _prototypes.prototypeIdentifier.formelementsdefinition:
 
 ========================
 [formElementsDefinition]
 ========================
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.*:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.*:
 
 [formElementsDefinition]
 ------------------------
@@ -46,7 +46,7 @@ Properties
       Array which defines the available form elements. Every key within this array is called the ``<formElementTypeIdentifier>``.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier:
 
 <formElementTypeIdentifier>
 ---------------------------
@@ -129,13 +129,13 @@ Properties
       This array key identifies a form element. This identifier could be used to attach a form element to a form.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>-commonproperties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-commonproperties:
 
 Common <formElementTypeIdentifier> properties
 =============================================
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.defaultValue:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.defaultValue:
 
 defaultValue
 ------------
@@ -161,7 +161,7 @@ defaultValue
       ``MultiSelect`` form element).
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.implementationclassname:
 
 implementationClassName
 -----------------------
@@ -179,7 +179,7 @@ implementationClassName
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom form element implementations"<concepts-frontendrendering-codecomponents-customformelementimplementations>`
@@ -188,7 +188,7 @@ implementationClassName
       Classname which implements the form element.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.renderingoptions.translation.translationfiles:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.renderingoptions.translation.translationfiles:
 
 renderingOptions.translation.translationFiles
 ---------------------------------------------
@@ -206,7 +206,7 @@ renderingOptions.translation.translationFiles
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom form element implementations"<concepts-frontendrendering-codecomponents-customformelementimplementations>`
@@ -214,10 +214,10 @@ renderingOptions.translation.translationFiles
 
 :aspect:`Description`
       Filesystem path(s) to translation files which should be searched for form element property translations.
-      If ``translationFiles`` is undefined, - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Form.renderingOptions.translation.translationFiles"<prototypes.\<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.translation.translationfiles>` will be used.
+      If ``translationFiles`` is undefined, - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Form.renderingOptions.translation.translationFiles"<prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.translation.translationfiles>` will be used.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.renderingOptions.translation.translatePropertyValueIfEmpty:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.renderingOptions.translation.translatePropertyValueIfEmpty:
 
 renderingOptions.translation.translatePropertyValueIfEmpty
 ----------------------------------------------------------
@@ -245,7 +245,7 @@ renderingOptions.translation.translatePropertyValueIfEmpty
       If set to ``false``, the form element property translation will be skipped if the form element property value is empty.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.renderingoptions.templatename:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.renderingoptions.templatename:
 
 renderingOptions.templateName
 -----------------------------
@@ -260,7 +260,7 @@ renderingOptions.templateName
       Frontend/ Backend (form editor)
 
 :aspect:`Mandatory`
-      (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Default value`
       undefined
@@ -273,7 +273,7 @@ renderingOptions.templateName
       Set ``templateName`` to define a custom template name which should be used instead of the ``<formElementTypeIdentifier>``.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.properties:
 
 properties
 ----------
@@ -291,7 +291,7 @@ properties
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom form element implementations"<concepts-frontendrendering-codecomponents-customformelementimplementations>`
@@ -301,7 +301,7 @@ properties
       Array with form element specific properties.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.properties.elementDescription:
 
 properties.elementDescription
 -----------------------------
@@ -330,7 +330,7 @@ properties.elementDescription
       below the form element.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.properties.fluidadditionalattributes:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.properties.fluidadditionalattributes:
 
 properties.fluidAdditionalAttributes
 ------------------------------------
@@ -348,7 +348,7 @@ properties.fluidAdditionalAttributes
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom form element implementations"<concepts-frontendrendering-codecomponents-customformelementimplementations>`
@@ -358,7 +358,7 @@ properties.fluidAdditionalAttributes
       The values within this array are directly used within the form element ViewHelper's property ``additionalAttributes``.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.properties.gridcolumnclassautoconfiguration:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.properties.gridcolumnclassautoconfiguration:
 
 properties.gridColumnClassAutoConfiguration
 -------------------------------------------
@@ -379,7 +379,7 @@ properties.gridColumnClassAutoConfiguration
       Undefined
 
 :aspect:`Related options`
-      - :ref:`"GridRow viewPorts"<prototypes.\<prototypeIdentifier>.formelementsdefinition.gridrow.properties.gridcolumnclassautoconfiguration.viewports>`
+      - :ref:`"GridRow viewPorts"<prototypes.prototypeIdentifier.formelementsdefinition.gridrow.properties.gridcolumnclassautoconfiguration.viewports>`
 
 :aspect:`Description`
         If the form element lies within a GridRow you can define the number of columns which the form element should occupy.
@@ -399,7 +399,7 @@ properties.gridColumnClassAutoConfiguration
                       xs:
                         numbersOfColumnsToUse: '5'
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.label:
 
 label
 -----
@@ -417,7 +417,7 @@ label
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom form element implementations"<concepts-frontendrendering-codecomponents-customformelementimplementations>`
@@ -427,7 +427,7 @@ label
       The label of the form element.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor:
 
 formEditor
 ----------
@@ -445,7 +445,7 @@ formEditor
       No (but recommended)
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -454,7 +454,7 @@ formEditor
       Array with configurations for the ``form editor``
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.predefineddefaults:
 
 formEditor.predefinedDefaults
 -----------------------------
@@ -472,7 +472,7 @@ formEditor.predefinedDefaults
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Translate form editor settings"<concepts-formeditor-translation-formeditor>`
@@ -481,7 +481,7 @@ formEditor.predefinedDefaults
       Defines predefined defaults for form element properties which are prefilled, if the form element is added to a form.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections:
 
 formEditor.propertyCollections
 ------------------------------
@@ -499,7 +499,7 @@ formEditor.propertyCollections
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -508,7 +508,7 @@ formEditor.propertyCollections
       Array with configurations for ``property collections`` for the form element.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections.validators:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections.validators:
 
 formEditor.propertyCollections.validators
 -----------------------------------------
@@ -526,7 +526,7 @@ formEditor.propertyCollections.validators
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -535,7 +535,7 @@ formEditor.propertyCollections.validators
       Array with configurations for available validators for a form element.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections.validators.*.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections.validators.*.identifier:
 
 formEditor.propertyCollections.validators.[*].identifier
 --------------------------------------------------------
@@ -553,17 +553,17 @@ formEditor.propertyCollections.validators.[*].identifier
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections.validators.*.editors:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections.validators.*.editors:
 
 formEditor.propertyCollections.validators.[*].editors
 -----------------------------------------------------
@@ -581,7 +581,7 @@ formEditor.propertyCollections.validators.[*].editors
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -590,7 +590,7 @@ formEditor.propertyCollections.validators.[*].editors
       Array with available ``inspector editors`` for this validator.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections.finishers:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections.finishers:
 
 formEditor.propertyCollections.finishers
 ----------------------------------------
@@ -608,7 +608,7 @@ formEditor.propertyCollections.finishers
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -617,7 +617,7 @@ formEditor.propertyCollections.finishers
       Array with configurations for available finisher for a form definition.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections.finishers.*.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections.finishers.*.identifier:
 
 formEditor.propertyCollections.finishers.[*].identifier
 -------------------------------------------------------
@@ -635,17 +635,17 @@ formEditor.propertyCollections.finishers.[*].identifier
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.propertycollections.finishers.*.editors:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections.finishers.*.editors:
 
 formEditor.propertyCollections.finishers.[*].editors
 ----------------------------------------------------
@@ -663,7 +663,7 @@ formEditor.propertyCollections.finishers.[*].editors
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -672,7 +672,7 @@ formEditor.propertyCollections.finishers.[*].editors
       Array with available ``inspector editors`` for this finisher.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.label:
 
 formEditor.label
 ----------------
@@ -690,7 +690,7 @@ formEditor.label
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Translate form editor settings"<concepts-formeditor-translation-formeditor>`
@@ -699,7 +699,7 @@ formEditor.label
       This label will be shown within the "new element" Modal.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.group:
 
 formEditor.group
 ----------------
@@ -717,17 +717,17 @@ formEditor.group
       No
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formElementGroups <prototypes.\<prototypeidentifier>.formeditor.formelementgroups>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formElementGroups <prototypes.prototypeIdentifier.formeditor.formelementgroups>`
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
       The ``group`` value must be equal to an array key within ``formElementGroups``.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.groupsorting:
 
 formEditor.groupSorting
 -----------------------
@@ -745,7 +745,7 @@ formEditor.groupSorting
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -754,7 +754,7 @@ formEditor.groupSorting
       The position within the ``formEditor.group`` for this form element.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -772,7 +772,7 @@ formEditor.iconIdentifier
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -781,13 +781,13 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formEditor.editors-tree:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formEditor.editors-tree:
 
 formEditor.editors
 ------------------
@@ -797,7 +797,7 @@ formEditor.editors
     formEditor/Index
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>-concreteconfigurations:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations:
 
 Concrete configurations
 =======================
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/Index.rst
index d492b01a23a9b1a602a2b2728a97dc3a8d2c7be8..5c122f6f3749d2f162f94cf0bb79ef5405830773 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/Index.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*:
 
 ==================================================
 [<formElementTypeIdentifier>][formEditor][editors]
 ==================================================
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors:
 
 <formElementTypeIdentifier>.formEditor.editors
 ----------------------------------------------
@@ -28,10 +28,10 @@ Properties
       Backend (form editor)
 
 :aspect:`Mandatory`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -40,16 +40,16 @@ Properties
       Array with numerical keys. Each arrayitem describes an ``inspector editor`` which is used to write values into a form element property.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*-commonproperties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*-commonproperties:
 
 Common [<formElementTypeIdentifier>][formEditor][editors][*] properties
 =======================================================================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier:
 .. include:: inspectorEditors/properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename:
 
 templateName
 ------------
@@ -67,10 +67,10 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -79,15 +79,15 @@ templateName
       .. include:: inspectorEditors/properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label:
 .. include:: inspectorEditors/properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath:
 .. include:: inspectorEditors/properties/PropertyPath.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formEditor.editors-availableinspectoreditors:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formEditor.editors-availableinspectoreditors:
 
 available inspector editors
 ---------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/CheckboxEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/CheckboxEditor.rst
index f665bbe5467394020c9b4cc89255974b559df354..3a8a49943411b3c59e95805f20ccb368b2acb228 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/CheckboxEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/CheckboxEditor.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor:
 
 ================
 [CheckboxEditor]
 ================
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor-introduction:
 
 Introduction
 ============
@@ -16,12 +16,12 @@ Introduction
 Shows a checkbox which write 'true' or 'false' within the form definition for a form element property.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-checkboxeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-checkboxeditor:
 
 templateName
 ------------
@@ -36,7 +36,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.prototypeidentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-CheckboxEditor
@@ -48,13 +48,13 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-checkboxeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-checkboxeditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-checkboxeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-checkboxeditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-checkboxeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-checkboxeditor:
 .. include:: properties/PropertyPath.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/CollectionElementHeaderEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/CollectionElementHeaderEditor.rst
index b5f0f76640d7039c2297a3d5ff66c906701216bf..10e47c6418a8daeecb09b26aa2641824e27be6f0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/CollectionElementHeaderEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/CollectionElementHeaderEditor.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor:
 
 ===============================
 [CollectionElementHeaderEditor]
 ===============================
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor-introduction:
 
 Introduction
 ============
@@ -17,12 +17,12 @@ This is not really an editor because this editor don't write values into the for
 This editor show the header area for collection elements (finishers/ validators) with it's icon and label.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templateName-collectionelementheadereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templateName-collectionelementheadereditor:
 
 templateName
 ------------
@@ -37,7 +37,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.prototypeidentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-CollectionElementHeaderEditor
@@ -49,9 +49,9 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-collectionelementheadereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-collectionelementheadereditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-collectionelementheadereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-collectionelementheadereditor:
 .. include:: properties/Label.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/FinishersEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/FinishersEditor.rst
index 92e8c7c24517373da3d52c4ebd5ad0cfb9547090..8954657514e3f5da512d4d10c8b23232bdd46092 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/FinishersEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/FinishersEditor.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.finisherseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.finisherseditor:
 
 =================
 [FinishersEditor]
 =================
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.finisherseditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.finisherseditor-introduction:
 
 Introduction
 ============
@@ -16,12 +16,12 @@ Introduction
 Shows a select list with finishers. If a finisher is already added to the form definition, then this finisher will be removed from the select list.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.finisherseditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.finisherseditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-finisherseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-finisherseditor:
 
 templateName
 ------------
@@ -36,7 +36,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-FinishersEditor
@@ -48,15 +48,15 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-finisherseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-finisherseditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-finisherseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-finisherseditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.value-finisherseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.value-finisherseditor:
 
 selectOptions.[*].value
 -----------------------
@@ -71,7 +71,7 @@ selectOptions.[*].value
       Yes
 
 :aspect:`Related options`
-      - :ref:`"[finishersDefinition]"<prototypes.\<prototypeidentifier>.finishersdefinition.*>`
+      - :ref:`"[finishersDefinition]"<prototypes.prototypeidentifier.finishersdefinition.*>`
 
 
 .. :aspect:`Good to know`
@@ -81,7 +81,7 @@ selectOptions.[*].value
       Has to match with a ``prototypes.<prototypeIdentifier>.finishersdefinition`` configuration key.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.label-finisherseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.label-finisherseditor:
 
 selectOptions.[*].label
 -----------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/FormElementHeaderEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/FormElementHeaderEditor.rst
index 5b2dfe5ca2a50e13578f8d341322134a831c2cc7..915e24521d36004b8003261fb9175be2b9cd7969 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/FormElementHeaderEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/FormElementHeaderEditor.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor:
 
 =========================
 [FormElementHeaderEditor]
 =========================
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor-introduction:
 
 Introduction
 ============
@@ -17,12 +17,12 @@ This is not really an editor because this editor don't write values into the for
 This editor show the header area for the form element with it's icon and label.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-formelementheadereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-formelementheadereditor:
 
 templateName
 ------------
@@ -37,7 +37,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.prototypeidentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-FormElementHeaderEditor
@@ -49,5 +49,5 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-formelementheadereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-formelementheadereditor:
 .. include:: properties/Identifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/GridColumnViewPortConfigurationEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/GridColumnViewPortConfigurationEditor.rst
index a47f515250a31ce46d9eefe49e8b2209701e0c46..029c0f70bc4cc5d4789cd5ffa63ee0b5fe5d704d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/GridColumnViewPortConfigurationEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/GridColumnViewPortConfigurationEditor.rst
@@ -1,13 +1,13 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor:
 
 =======================================
 [GridColumnViewPortConfigurationEditor]
 =======================================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor-introduction:
 
 Introduction
 ============
@@ -15,12 +15,12 @@ Introduction
 Shows a viewport selector as buttons and an input field. With this editor, you can define how many columns per viewPort an form element should occupy.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templateName-gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templateName-gridcolumnviewportconfigurationeditor:
 
 templateName
 ------------
@@ -35,7 +35,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.prototypeidentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-GridColumnViewPortConfigurationEditor
@@ -47,15 +47,15 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-gridcolumnviewportconfigurationeditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-gridcolumnviewportconfigurationeditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.configurationOptions.viewPorts.*.viewPortIdentifier-gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.configurationOptions.viewPorts.*.viewPortIdentifier-gridcolumnviewportconfigurationeditor:
 
 configurationOptions.viewPorts.[*].viewPortIdentifier
 -----------------------------------------------------
@@ -70,7 +70,7 @@ configurationOptions.viewPorts.[*].viewPortIdentifier
       Yes
 
 :aspect:`Related options`
-      - :ref:`"properties.gridColumnClassAutoConfiguration"<prototypes.\<prototypeIdentifier>.formelementsdefinition.\<formelementtypeidentifier>.properties.gridcolumnclassautoconfiguration>`
+      - :ref:`"properties.gridColumnClassAutoConfiguration"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.properties.gridcolumnclassautoconfiguration>`
 
 .. :aspect:`Good to know`
       ToDo
@@ -79,7 +79,7 @@ configurationOptions.viewPorts.[*].viewPortIdentifier
       Has to match with a ``prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.properties.gridColumnClassAutoConfiguration.viewPorts`` configuration key.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.configurationOptions.viewPorts.*.label-gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.configurationOptions.viewPorts.*.label-gridcolumnviewportconfigurationeditor:
 
 configurationOptions.viewPorts.[*].label
 ----------------------------------------
@@ -103,7 +103,7 @@ configurationOptions.viewPorts.[*].label
       The label for the viewport button.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.configurationOptions.numbersOfColumnsToUse.label-gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.configurationOptions.numbersOfColumnsToUse.label-gridcolumnviewportconfigurationeditor:
 
 configurationOptions.numbersOfColumnsToUse.label
 ------------------------------------------------
@@ -127,7 +127,7 @@ configurationOptions.numbersOfColumnsToUse.label
       The label for the "Numbers of columns" input field.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.configurationOptions.numbersOfColumnsToUse.propertyPath-gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.configurationOptions.numbersOfColumnsToUse.propertyPath-gridcolumnviewportconfigurationeditor:
 
 configurationOptions.numbersOfColumnsToUse.propertyPath
 -------------------------------------------------------
@@ -151,7 +151,7 @@ configurationOptions.numbersOfColumnsToUse.propertyPath
       The path to the property of the form element which should be written.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.configurationOptions.numbersOfColumnsToUse.fieldExplanationText-gridcolumnviewportconfigurationeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.configurationOptions.numbersOfColumnsToUse.fieldExplanationText-gridcolumnviewportconfigurationeditor:
 
 configurationOptions.numbersOfColumnsToUse.fieldExplanationText
 ---------------------------------------------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/MultiSelectEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/MultiSelectEditor.rst
index 86e8ea84343efe72808a502533ca9bfae234e906..f7d42e5c41329f8688f9d1e7e95cf773d6c10b67 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/MultiSelectEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/MultiSelectEditor.rst
@@ -1,13 +1,13 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.multiselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.multiselecteditor:
 
 ===================
 [MultiSelectEditor]
 ===================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.multiselecteditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.multiselecteditor-introduction:
 
 Introduction
 ============
@@ -15,12 +15,12 @@ Introduction
 Shows a multiselect list with values. If one or more selectoptions are selected, then the option value will be written within a form element property which is defined by the "propertyPath" option.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.multiselecteditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.multiselecteditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-multiselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-multiselecteditor:
 
 templateName
 ------------
@@ -35,7 +35,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-MultiSelectEditor
@@ -47,19 +47,19 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-multiselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-multiselecteditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-multiselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-multiselecteditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-multiselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-multiselecteditor:
 .. include:: properties/PropertyPath.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.value-multiselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.value-multiselecteditor:
 
 selectOptions.[*].value
 -----------------------
@@ -84,7 +84,7 @@ selectOptions.[*].value
       The corresponding form elements property is identified by the ``propertyPath`` option.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.label-multiselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.label-multiselecteditor:
 
 selectOptions.[*].label
 -----------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/PropertyGridEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/PropertyGridEditor.rst
index c8ec4dd4da5d08c9534e19eaf2f3cf901f5b0888..7104d22867fc783c06d9a87c34940df099caa43b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/PropertyGridEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/PropertyGridEditor.rst
@@ -1,13 +1,13 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor:
 
 ====================
 [PropertyGridEditor]
 ====================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor-introduction:
 
 Introduction
 ============
@@ -15,12 +15,12 @@ Introduction
 Shows a grid which allows you to add (and remove) multiple rows and fill values for each row.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-propertygrideditor:
 
 templateName
 ------------
@@ -35,7 +35,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-PropertyGridEditor
@@ -47,19 +47,19 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-propertygrideditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-propertygrideditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-propertygrideditor:
 .. include:: properties/PropertyPath.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.issortable-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.issortable-propertygrideditor:
 
 isSortable
 ----------
@@ -83,7 +83,7 @@ isSortable
       If set to 'false' the rows are not sortable.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.enableaddrow-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.enableaddrow-propertygrideditor:
 
 enableAddRow
 ------------
@@ -107,7 +107,7 @@ enableAddRow
       If set to 'false' the "add new row" button is disabled.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.enabledeleterow-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.enabledeleterow-propertygrideditor:
 
 enableDeleteRow
 ---------------
@@ -131,7 +131,7 @@ enableDeleteRow
       If set to 'false' the "delete row" button is disabled.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.multiselection-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.multiselection-propertygrideditor:
 
 multiSelection
 --------------
@@ -155,7 +155,7 @@ multiSelection
       If set to 'false' only one row can be marked as preselected.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.removelastavailablerowflashmessagetitle-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removelastavailablerowflashmessagetitle-propertygrideditor:
 
 removeLastAvailableRowFlashMessageTitle
 ---------------------------------------
@@ -181,7 +181,7 @@ removeLastAvailableRowFlashMessageTitle
       This property defines the title for the flash message.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.removelastavailablerowflashmessagemessage-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removelastavailablerowflashmessagemessage-propertygrideditor:
 
 removeLastAvailableRowFlashMessageMessage
 -----------------------------------------
@@ -208,7 +208,7 @@ removeLastAvailableRowFlashMessageMessage
 
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.shouldshowpreselectedvaluecolumn-propertygrideditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.shouldshowpreselectedvaluecolumn-propertygrideditor:
 
 shouldShowPreselectedValueColumn
 --------------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/RemoveElementEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/RemoveElementEditor.rst
index 1d6af88043d721de3d34069593bcc7181f7ad7c9..acd5a26d55db58c6241be822851148ca13e815c9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/RemoveElementEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/RemoveElementEditor.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor:
 
 =====================
 [RemoveElementEditor]
 =====================
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor-introduction:
 
 Introduction
 ============
@@ -16,12 +16,12 @@ Introduction
 This editor show a button which allows you to remove the form element or the collection element (finishers/ validators).
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-removeelementeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-removeelementeditor:
 
 templateName
 ------------
@@ -36,7 +36,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-RemoveElementEditor
@@ -48,5 +48,5 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-removeelementeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-removeelementeditor:
 .. include:: properties/Identifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/RequiredValidatorEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/RequiredValidatorEditor.rst
index abecd3e83e4e960de84b702fe03add0543612406..1b4b9f3aedc2717c6dde5e2cace3abe4bf170110 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/RequiredValidatorEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/RequiredValidatorEditor.rst
@@ -1,13 +1,13 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor:
 
 =========================
 [RequiredValidatorEditor]
 =========================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor-introduction:
 
 Introduction
 ============
@@ -15,12 +15,12 @@ Introduction
 Shows a checkbox. If set, a validator ('NotEmpty' by default) will be written into the ``form definition``. In addition another property could be written into the ``form definition``.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-requiredvalidatoreditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-requiredvalidatoreditor:
 
 templateName
 ------------
@@ -35,7 +35,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-RequiredValidatorEditor
@@ -47,15 +47,15 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-requiredvalidatoreditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-requiredvalidatoreditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-requiredvalidatoreditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-requiredvalidatoreditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.validatoridentifier-requiredvalidatoreditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatoridentifier-requiredvalidatoreditor:
 
 validatorIdentifier
 -------------------
@@ -79,7 +79,7 @@ validatorIdentifier
       The ``<validatorIdentifier>`` which should be used.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-requiredvalidatoreditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-requiredvalidatoreditor:
 
 propertyPath
 ------------
@@ -103,7 +103,7 @@ propertyPath
       An property path which should be written into the `form definition`` if the checkbox is set.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertyvalue-requiredvalidatoreditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalue-requiredvalidatoreditor:
 
 propertyValue
 -------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/SingleSelectEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/SingleSelectEditor.rst
index d3a7394fd528c9cf4d8a4b7b5ade540d8a779ae9..acfbe4761f11897f6c1aa42d10ae34f90b2ed26e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/SingleSelectEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/SingleSelectEditor.rst
@@ -1,13 +1,13 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.singleselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.singleselecteditor:
 
 ====================
 [SingleSelectEditor]
 ====================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.singleselecteditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.singleselecteditor-introduction:
 
 Introduction
 ============
@@ -15,12 +15,12 @@ Introduction
 Shows a single select list with values. If a selectoption is selected, then the option value will be written within a form element property which is defined by the "propertyPath" option.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.singleselecteditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.singleselecteditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-singleselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-singleselecteditor:
 
 templateName
 ------------
@@ -35,7 +35,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-SingleSelectEditor
@@ -47,19 +47,19 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-singleselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-singleselecteditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-singleselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-singleselecteditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-singleselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-singleselecteditor:
 .. include:: properties/PropertyPath.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.value-singleselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.value-singleselecteditor:
 
 selectOptions.[*].value
 -----------------------
@@ -85,7 +85,7 @@ selectOptions.[*].value
       The corresponding form elements property is identified by the ``propertyPath`` option.
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.label-singleselecteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.label-singleselecteditor:
 
 selectOptions.[*].label
 -----------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextEditor.rst
index 7b12c11a61b5f7541bb75ebe794cee5f8fa3b1fb..94cc4ae93b9db11242249069fbae270f3337d152 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextEditor.rst
@@ -1,13 +1,13 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor:
 
 ============
 [TextEditor]
 ============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.texteditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor-introduction:
 
 Introduction
 ============
@@ -15,12 +15,12 @@ Introduction
 Shows a single line textfield.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.texteditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-texteditor:
 
 templateName
 ------------
@@ -35,7 +35,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-TextEditor
@@ -47,19 +47,19 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-texteditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-texteditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-texteditor:
 .. include:: properties/PropertyPath.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.donotsetifpropertyvalueisempty-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.donotsetifpropertyvalueisempty-texteditor:
 
 doNotSetIfPropertyValueIsEmpty
 ------------------------------
@@ -84,7 +84,7 @@ doNotSetIfPropertyValueIsEmpty
       value from the ``inspector editor`` is empty instead of writing an empty value ('') for this property.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertyvalidators-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalidators-texteditor:
 
 propertyValidators
 ------------------
@@ -99,7 +99,7 @@ propertyValidators
       No
 
 :aspect:`Related options`
-      - :ref:`"formElementPropertyValidatorsDefinition"<prototypes.\<prototypeidentifier>.formeditor.formelementpropertyvalidatorsdefinition>`
+      - :ref:`"formElementPropertyValidatorsDefinition"<prototypes.prototypeIdentifier.formeditor.formelementpropertyvalidatorsdefinition>`
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -119,7 +119,7 @@ propertyValidators
            20: 'FormElementIdentifierWithinCurlyBracesExclusive'
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertyvalidatorsmode-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalidatorsmode-texteditor:
 
 propertyValidatorsMode
 ----------------------
@@ -149,7 +149,7 @@ propertyValidatorsMode
       If set to 'OR' then at least one validator must be valid to accept the ``inspector editor`` value. If set to 'AND' then all validators must be valid.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.fieldexplanationtext-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.fieldexplanationtext-texteditor:
 
 fieldExplanationText
 --------------------
@@ -174,7 +174,7 @@ fieldExplanationText
       A text which is shown at the bottom of the ``inspector editor``.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.additionalelementpropertypaths-texteditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.additionalelementpropertypaths-texteditor:
 
 additionalElementPropertyPaths
 ------------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextareaEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextareaEditor.rst
index 2df80e86350ff750b40357bb299ad9243fb0e756..30e594a0323b9aa389c0c35a73a43dba2de8e570 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextareaEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/TextareaEditor.rst
@@ -1,13 +1,13 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.textareaeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.textareaeditor:
 
 ================
 [TextareaEditor]
 ================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.textareaeditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.textareaeditor-introduction:
 
 Introduction
 ============
@@ -15,12 +15,12 @@ Introduction
 Shows a textarea.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.textareaeditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.textareaeditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-textareaeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-textareaeditor:
 
 templateName
 ------------
@@ -35,7 +35,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-TextareaEditor
@@ -47,13 +47,13 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-textareaeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-textareaeditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-textareaeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-textareaeditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-textareaeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-textareaeditor:
 .. include:: properties/PropertyPath.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/Typo3WinBrowserEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/Typo3WinBrowserEditor.rst
index 40f7d3f374503e2588be55548fd34802cfe26f67..a84d70c1fba7d3c484ef75a89ff31ca5ee99fa52 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/Typo3WinBrowserEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/Typo3WinBrowserEditor.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.typo3winbrowsereditor:
 
 =======================
 [Typo3WinBrowserEditor]
 =======================
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.typo3winbrowsereditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.typo3winbrowsereditor-introduction:
 
 Introduction
 ============
@@ -16,12 +16,12 @@ Introduction
 Shows a popup window to select a record (e.g. pages or tt_content records) as you know it from within the form engine.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.typo3winbrowsereditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.typo3winbrowsereditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-typo3winbrowsereditor:
 
 templateName
 ------------
@@ -36,7 +36,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-Typo3WinBrowserEditor
@@ -48,19 +48,19 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-typo3winbrowsereditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-typo3winbrowsereditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-typo3winbrowsereditor:
 .. include:: properties/PropertyPath.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.buttonlabel-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.buttonlabel-typo3winbrowsereditor:
 
 buttonLabel
 -----------
@@ -85,7 +85,7 @@ buttonLabel
       The label for the button which opens the popup window.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.browsabletype-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.browsabletype-typo3winbrowsereditor:
 
 browsableType
 -------------
@@ -109,7 +109,7 @@ browsableType
       The allowed selectable record types e.g 'pages' or 'tt_content'.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.iconidentifier-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.iconidentifier-typo3winbrowsereditor:
 
 iconIdentifier
 --------------
@@ -133,7 +133,7 @@ iconIdentifier
       The icon to use for the button which triggers the record browser.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertyvalidators-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalidators-typo3winbrowsereditor:
 
 propertyValidators
 ------------------
@@ -148,7 +148,7 @@ propertyValidators
       No
 
 :aspect:`Related options`
-      - :ref:`"formElementPropertyValidatorsDefinition"<prototypes.\<prototypeidentifier>.formeditor.formelementpropertyvalidatorsdefinition>`
+      - :ref:`"formElementPropertyValidatorsDefinition"<prototypes.prototypeIdentifier.formeditor.formelementpropertyvalidatorsdefinition>`
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
@@ -168,7 +168,7 @@ propertyValidators
            20: 'FormElementIdentifierWithinCurlyBracesExclusive'
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertyvalidatorsmode-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertyvalidatorsmode-typo3winbrowsereditor:
 
 propertyValidatorsMode
 ----------------------
@@ -198,7 +198,7 @@ propertyValidatorsMode
       If set to 'OR' then at least one validator must be valid to accept the ``inspector editor`` value. If set to 'AND' then all validators must be valid.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.fieldexplanationtext-typo3winbrowsereditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.fieldexplanationtext-typo3winbrowsereditor:
 
 fieldExplanationText
 --------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/ValidationErrorMessageEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/ValidationErrorMessageEditor.rst
index 371744bed5b7eaa744f8dd6be3609a2949d14d06..380f4728c02ba5959c55bfae387687be1f928ad4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/ValidationErrorMessageEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/ValidationErrorMessageEditor.rst
@@ -1,12 +1,12 @@
 .. include:: /Includes.rst.txt
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor:
 
 ==============================
 [ValidationErrorMessageEditor]
 ==============================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor-introduction:
 
 Introduction
 ============
@@ -15,12 +15,12 @@ Shows a textarea. It allows the definition of custom validation error messages.
 those error messages for all existing validators.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-validationerrormessageeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-validationerrormessageeditor:
 
 templateName
 ------------
@@ -35,7 +35,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-ValidationErrorMessageEditor
@@ -47,19 +47,19 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-validationerrormessageeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-validationerrormessageeditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-validationerrormessageeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-validationerrormessageeditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.propertypath-validationerrormessageeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertypath-validationerrormessageeditor:
 .. include:: properties/PropertyPath.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.fieldexplanationtext-validationerrormessageeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.fieldexplanationtext-validationerrormessageeditor:
 
 fieldExplanationText
 --------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/ValidatorsEditor.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/ValidatorsEditor.rst
index 48c899f7aa2b3e2d7194f775747f678c4b5d03e6..fb2e2cecca62e2fde29a26e73c5a80192a65334d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/ValidatorsEditor.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/ValidatorsEditor.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.validatorseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor:
 
 ==================
 [ValidatorsEditor]
 ==================
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.validatorseditor-introduction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor-introduction:
 
 Introduction
 ============
@@ -16,12 +16,12 @@ Introduction
 Shows a select list with validators. If a validator is already added to the form element, then this validator will be removed from the select list.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.validatorseditor-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.templatename-validatorseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.templatename-validatorseditor:
 
 templateName
 ------------
@@ -36,7 +36,7 @@ templateName
       Yes
 
 :aspect:`Related options`
-      - :ref:`prototypes.\<prototypeIdentifier>.formEditor.formEditorPartials <prototypes.\<prototypeidentifier>.formeditor.formeditorpartials>`
+      - :ref:`prototypes.prototypeIdentifier.formEditor.formEditorPartials <prototypes.prototypeIdentifier.formeditor.formeditorpartials>`
 
 :aspect:`value`
       Inspector-FinishersEditor
@@ -48,15 +48,15 @@ templateName
       .. include:: properties/TemplateName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.identifier-validatorseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.identifier-validatorseditor:
 .. include:: properties/Identifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.label-validatorseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.label-validatorseditor:
 .. include:: properties/Label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.value-validatorseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.value-validatorseditor:
 
 selectOptions.[*].value
 -----------------------
@@ -71,7 +71,7 @@ selectOptions.[*].value
       Yes
 
 :aspect:`Related options`
-      - :ref:`"[validatorsDefinition]"<prototypes.\<prototypeidentifier>.validatorsdefinition.*>`
+      - :ref:`"[validatorsDefinition]"<prototypes.prototypeIdentifier.validatorsdefinition.*>`
 
 .. :aspect:`Good to know`
       ToDo
@@ -80,7 +80,7 @@ selectOptions.[*].value
       Has to match with a ``prototypes.<prototypeIdentifier>.validatorsDefinition`` configuration key.
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.label-validatorseditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.label-validatorseditor:
 
 selectOptions.[*].label
 -----------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/Identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/Identifier.rst.txt
index 70b34f72c154b8b182bcc97c950ac69ec34dd62a..2d69d5e94def22080648c0554aa9c9eb4d214d74 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/Identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/Identifier.rst.txt
@@ -15,11 +15,11 @@ identifier
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
 
 :aspect:`Description`
       Identifies the current ``inspector editor`` within the current form element.
-      The identifier is a text of your choice but must be unique within the optionpath ``prototypes.<prototypeIdentifier>.formElementsDefinition.<formElementTypeIdentifier>.formEditor.editors``.
+      The identifier is a text of your choice but must be unique within the optionpath ``prototypes.prototypeIdentifier.formElementsDefinition.formelementtypeidentifier.formEditor.editors``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/Label.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/Label.rst.txt
index bdabbace17d3dd674cec7b91f3c362749a1ebd7a..68f95b91985a6e5c470cae92d8efe73947f9a48b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/Label.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/Label.rst.txt
@@ -15,7 +15,7 @@ label
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/PropertyPath.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/PropertyPath.rst.txt
index cc335dd186e66809a791d0711a14ce4f0c61f61a..f219ebf2d241188ceb2b88aff8d685a2e2fdebe1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/PropertyPath.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formEditor/inspectorEditors/properties/PropertyPath.rst.txt
@@ -15,7 +15,7 @@ propertyPath
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword.rst
index 6bb747b72036356bdf59a16b12c1305c58a509f5..c2f45d49a9e9c0a67f16c845ca7c4f726e6d239f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword.rst
@@ -1,190 +1,190 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.advancedpassword:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword:
 
 ==================
 [AdvancedPassword]
 ==================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.advancedpassword-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.implementationclassname:
 .. include:: AdvancedPassword/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.properties.containerclassattribute:
 .. include:: AdvancedPassword/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.properties.elementclassattribute:
 .. include:: AdvancedPassword/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.properties.elementDescription:
 .. include:: AdvancedPassword/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.properties.elementerrorclassattribute:
 .. include:: AdvancedPassword/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.properties.confirmationlabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.properties.confirmationlabel:
 .. include:: AdvancedPassword/properties/confirmationLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.properties.confirmationclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.properties.confirmationclassattribute:
 .. include:: AdvancedPassword/properties/confirmationClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor:
 .. include:: AdvancedPassword/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.100:
 .. include:: AdvancedPassword/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.200:
 .. include:: AdvancedPassword/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.230:
 .. include:: AdvancedPassword/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.300:
 .. include:: AdvancedPassword/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.400:
 .. include:: AdvancedPassword/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.700:
 .. include:: AdvancedPassword/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.800:
 .. include:: AdvancedPassword/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.900:
 .. include:: AdvancedPassword/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.editors.9999:
 .. include:: AdvancedPassword/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.predefineddefaults:
 .. include:: AdvancedPassword/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.10:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.10.identifier:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.10.editors.100:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.20:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.20:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/20.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.20.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.20.identifier:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.20.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.20.editors.100:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/20/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.20.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.20.editors.9999:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/30.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.identifier:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.editors.100:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/30/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.editors.200:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/30/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.editors.300:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/30/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.30.editors.9999:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.40:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.40:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/40.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.40.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.40.identifier:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.40.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.40.editors.100:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/40/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.40.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.40.editors.9999:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.50:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.50:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/50.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.50.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.50.identifier:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.50.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.50.editors.100:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/50/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.50.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.50.editors.9999:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.60:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.60:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/60.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.60.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.60.identifier:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.60.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.60.editors.100:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/60/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.60.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.60.editors.9999:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/70.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.identifier:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.editors.100:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/70/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.editors.200:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/70/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.editors.300:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/70/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.70.editors.9999:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/80.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80.identifier:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80.editors.100:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/80/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80.editors.200:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/80/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.propertycollections.validators.80.editors.9999:
 .. include:: AdvancedPassword/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.label:
 .. include:: AdvancedPassword/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.group:
 .. include:: AdvancedPassword/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.groupsorting:
 .. include:: AdvancedPassword/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.advancedpassword.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.advancedpassword.formeditor.iconidentifier:
 .. include:: AdvancedPassword/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/100.rst.txt
index 4db931d08a5399135a218b7a2a3393e130ae1969..c0efeba089cd037af620cdc4456ec7243a51f82f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/200.rst.txt
index 756228752bd29908aceeb269390e433c6a6fc1ec..dbf1fdd1199c8199b7b7a589ec7782a6a33b8348 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/230.rst.txt
index 435505f6dd202e13123254f4b7d78763e68ade88..5cae37737eb6f72936f9aba08556b5df007c4a3d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/300.rst.txt
index bd18f2770d0573cc25e7bcc523b9b3129405473f..e4ae44f0e25d281c401b11a67e16280a066befeb 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/400.rst.txt
index 12d88cf247939570303ee6f6e019ac3311e6843b..27121c3f988be8cf84c80c7e5787ac65fdfcad9f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/700.rst.txt
index d78b0676a24f473998861a59a82af10f40e6717f..9c416d729cacaaca8ed9af8d2c6113c77ffe8661 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/800.rst.txt
index e65b0ba37becc207b1564fd115f0c6a7edfc7933..dc9b8be4490ab7a34be34ea8138680323760703f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/900.rst.txt
index 7d396ee30fb4e194bb3521f37d809429fbd6bb21..0d3ca00862d803abc1cd77498edd14d1f53b0c1a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/9999.rst.txt
index 599d765bca8340c96316fbb3417a4bbb503fac45..d9902b28305975c62423f2822b87a831e56283df 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/group.rst.txt
index aceeebcbe9af3567fdeea4a6b5e874fa045fd33b..d651cf3cbeaf016bfef9f0c23fedbd7be80105b6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: custom
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/iconIdentifier.rst.txt
index dc341382f0ccd10a04097539ffe296d6326db23c..9fc3f723119339eeb4075750a5a239ee8bfef119 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index 46909b86fc8c72ee7b8d406f912e990e2ea613dd..d9b7d9c90dd2803cee160897e50a7da99325beec 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index fd78f335b94b0982d6cdc4f1b9ce7c36bf5bb074..fac9f0b9f2c70ade8653e6a8e1edf626cd27dbf7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst.txt
index 9dafe04de08789b72e30abba773575d3c601fdd5..552fa3e75926febca552cef370055e5501455272 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/editors/100.rst.txt
index a9005d7e5cf57e692cb12bcd1da6ff5d232f11f0..9baa68b3347f64de5beaba7d3b9d5ce52dd259a3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.20.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
index 20921ecb35b33e038ddc1a5fcebc9251dc0e1ed0..04872beedde3b7e4d80095191918600ee5e0fc19 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.20.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst.txt
index d17f133ba19d8bb397e65bf2d41de96560f6e99f..3e685050f615bc59d7ad79aaa0075adf81356cf9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/20/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.20.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/100.rst.txt
index 6cb1b96a509b28d364c5834f4c95f81b61364ac8..6a322f152b7091fcd52dfc70ff7a6ba785a2714c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.30.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/200.rst.txt
index 3514ba6169ecb489317f37d2d0b563df29585548..cfd41211c86129103db8f6a895576084b3a1ba20 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.30.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/300.rst.txt
index 60b81f2df816972e1e1dd94d384b371700540573..5d87845a87d9b08b84f6f5135894e7fd1af3780d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.30.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
index 5078f3964111e59ce945d847fcc8735b63aba7e6..b2816f86a0745ff799749578ade420ea147df154 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.30.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst.txt
index 1d264259ba39ba94e22e78ca25f65051155a7920..2bb529bee6e9b8e47bde5cf127dd1490f7979eed 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/30/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.30.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/editors/100.rst.txt
index 1ae9b9d52a7ab1a1ec7863dd8184874cd15fc20a..5627a6a506ac23e5e626b008924896ce4f4a2757 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.40.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
index 5aba2b320cc6fed2d639255acc1a110f903a1bee..fb52af716a02e0ddb2f5e477163a42799d22aea0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.40.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst.txt
index 714fde3f363758ea2802449645ddb8a5bfc1f808..ca5d3cf71c1eed9c95551e3d5bdc64aa07bf08e1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/40/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.40.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/editors/100.rst.txt
index 79f3528e1538879bde9d3b8973c600037af644d5..86dc3a7c1a6939ff2f42c9d355efcb228f6fa429 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.50.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
index 689e68e9486dfda8246dd3744180c7ced5db2a62..a10dd5447e03c219a501f9c766491ac3a3d7b275 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.50.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst.txt
index c746cef8ed58a78ca3e1ce1cb1c0d1d8e5c7dca8..e9e872787d4c9d46cb4a13f4b78dc10e61b75d35 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/50/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.50.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/editors/100.rst.txt
index d7b778704d6b590592573cc41ce582e53b16ff67..3c757dbfca7d175df8ef87bae445b3bcd4534882 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.60.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
index 08ef45802bb6b0ec53eda361148189b5ea8fda68..c02b7c12962f13673f7f229b30a4b4c60ff1ff39 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.60.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst.txt
index 85675a796d1d38cc781524ffca30a05b81a09d9a..13721b2d89e893c215e8b04d8a0d378e665ca4cb 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/60/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.60.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/100.rst.txt
index cc166a1654c376e6621519a30fa7ffa71d0539a8..0ae15e07334c8cd2fe76a2ef4d404a47528b8384 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.70.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/200.rst.txt
index 1b7965f844db40c0119ea220d50cbcc5936eab15..5effaeaa00c2855cebfbfdbd47059acabbbf18e2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.70.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/300.rst.txt
index dbd187f99572d81d805477f36803de8f4544f27f..68fe775fc5090e825b6cd723b66b0469ddce063a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.70.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
index 00fef18f734f976f8aecf10880c95eb690b61419..1e65c52c38dc9db227e9b45f81ece757ad1466b6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.70.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst.txt
index 174a3e636bf377d1e66504510ec36c4d66a2dcc2..bc7fc89f63fe27cd898fca152ece4e824791fa8d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/70/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.70.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/100.rst.txt
index 320475baf7b6d6f3f5e55cea61d3e074fe34e6c7..c67ff093eff8ebf1099d7ccb2eb25b0f135b3b06 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.80.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/200.rst.txt
index 0a2183f7b47b07034721c038715caea666aedd50..1e54ac0e0cbcb8c724f1aaa63a0dd478855cd56f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.80.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
index 7f1a8503a5b6c96679dab899d954ba52de94b0b8..1907b0e111f0a40286355fcc069ff6dc65d0baf7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.propertyCollections.validators.80.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst.txt
index ee576d1e3c2ecf0e6da8e397b73d5f0341f4b86e..c359123f617d3b36ad58fba87c72e47088972d03 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/AdvancedPassword/formEditor/propertyCollections/validators/80/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.80.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox.rst
index a9d4d311f202491d2b8e929e5ffd947ba263fe71..d19fdf0ea0e59f1d663c2a20d134a1c4736681c3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox.rst
@@ -1,68 +1,68 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.checkbox:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox:
 
 ==========
 [Checkbox]
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.checkbox-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.implementationclassname:
 .. include:: Checkbox/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.properties.containerclassattribute:
 .. include:: Checkbox/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.properties.elementclassattribute:
 .. include:: Checkbox/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.properties.elementDescription:
 .. include:: Checkbox/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.properties.elementerrorclassattribute:
 .. include:: Checkbox/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.properties.value:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.properties.value:
 .. include:: Checkbox/properties/value.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor:
 .. include:: Checkbox/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.editors.100:
 .. include:: Checkbox/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.editors.200:
 .. include:: Checkbox/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.editors.230:
 .. include:: Checkbox/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.editors.700:
 .. include:: Checkbox/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.editors.800:
 .. include:: Checkbox/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.editors.9999:
 .. include:: Checkbox/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.predefineddefaults:
 .. include:: Checkbox/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.label:
 .. include:: Checkbox/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.group:
 .. include:: Checkbox/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.groupsorting:
 .. include:: Checkbox/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.checkbox.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.checkbox.formeditor.iconidentifier:
 .. include:: Checkbox/formEditor/iconIdentifier.rst.txt
 
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/100.rst.txt
index 51418bf1a5b12c2dfcf67743a87f67e0ce06cbfc..4e870051a121f718dce3ce2233f0f0d6717bd97b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Checkbox.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/200.rst.txt
index bea9a7f95b25e1e0956f9f0472d113aacc2bae1f..aef4a3189d57947e3d79479ece9a0719362d4108 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Checkbox.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/230.rst.txt
index 05daa7a2113ce24bdfab9e30204a9307a12e089f..55db3d64c73566a0d3e1cdb7115b9008e1fa7c58 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Checkbox.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/700.rst.txt
index c586ff5161da499d3609abfc8cb91c3a0ebf6869..85fde6ff1b3a67601877d22f738d8fec511dba89 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Checkbox.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/800.rst.txt
index 6bea341c3b000ca6faec7bafc3ffea698f79e986..d0b30be51736dca45bce1148142706b41b4b29af 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Checkbox.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/9999.rst.txt
index 4cfb001e5dca4dbbc7e71daa13f54749ce4cdc32..f588ed400c226b83a1e8f9908e00741370e3a595 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Checkbox.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/group.rst.txt
index 65d94706a7105243150d65c90026c7c086eaaf9a..99d48a04a67e33cabf139e52264486d300fd55ee 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: select
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/iconIdentifier.rst.txt
index 1bc3f2983fc747ab499a2c67415ad6a1cae4d333..d1ff1b58c114ec65cc79c7a2077a21d3dfd77728 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Checkbox/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement.rst
index b15662ccb6ba0a0fdbd4f8a918e4d738eb0f9c3f..93c137c15e6bcff2c2b2b75c8ef51cf375221eed 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement.rst
@@ -1,46 +1,46 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.contentelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement:
 
 ================
 [ContentElement]
 ================
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.contentelement-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.implementationclassname:
 .. include:: ContentElement/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.properties.contentelementuid:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.properties.contentelementuid:
 .. include:: ContentElement/properties/contentElementUid.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor:
 .. include:: ContentElement/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.editors.100:
 .. include:: ContentElement/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.editors.300:
 .. include:: ContentElement/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.editors.9999:
 .. include:: ContentElement/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.predefineddefaults:
 .. include:: ContentElement/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.label:
 .. include:: ContentElement/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.group:
 .. include:: ContentElement/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.groupsorting:
 .. include:: ContentElement/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.contentelement.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.contentelement.formeditor.iconidentifier:
 .. include:: ContentElement/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/100.rst.txt
index 1ab1f9bd7569ead2443f74d7606b7b44a5191ca3..172c7f87b1d01ef1bcb6f1d7ba79c57f35e37c20 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.ContentElement.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/300.rst.txt
index c53557a750cc7e76632587255c346b183f1a3226..ab6d24d32a2779e85400b4a45aa1d5c944f586da 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/300.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.ContentElement.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[Typo3WinBrowserEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.typo3winbrowsereditor>`
+      array/ :ref:`[Typo3WinBrowserEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.typo3winbrowsereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/9999.rst.txt
index e733b0c911d359705202258dd3d9b553886e1fab..c96183943a6d1d3eef03c220fe3b846a787084c4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.ContentElement.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/group.rst.txt
index 2a66f6c1251fd152d3918938750e0a37fce31077..4c291736e40aa6c20c395dc67e859638994a82ba 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: custom
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/iconIdentifier.rst.txt
index c45bde1ba39b1b4d83a28cb4b4692b60dea96ba8..adee9bdf31c0ecec2c1e6e63ad12560ceacb3b9a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ContentElement/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
         An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
         This icon will be shown within
 
-        - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+        - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
         - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
         - ``Tree`` component.
         - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date.rst
index 67634532411250836c3ff8632b98d2e3972774a2..0de1dd3a3a1d094b9932356e1ead823d415224a2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date.rst
@@ -1,7 +1,7 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.date:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date:
 
 ============
 [Date]
@@ -26,211 +26,211 @@ editor to validate the properties ``defaultValue`` and the ``DateRange`` validat
 Read more: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/date#Handling_browser_support
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.date-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.implementationclassname:
 .. include:: Date/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.properties.containerclassattribute:
 .. include:: Date/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.properties.displayFormat:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.properties.displayFormat:
 .. include:: Date/properties/displayFormat.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.properties.elementclassattribute:
 .. include:: Date/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.properties.elementerrorclassattribute:
 .. include:: Date/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.properties.fluidAdditionalAttributes.pattern:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.properties.fluidAdditionalAttributes.pattern:
 .. include:: Date/properties/fluidAdditionalAttributes/pattern.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor:
 .. include:: Date/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.100:
 .. include:: Date/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.200:
 .. include:: Date/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.230:
 .. include:: Date/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.500:
 .. include:: Date/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.550:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.550:
 .. include:: Date/formEditor/editors/550.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.700:
 .. include:: Date/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.800:
 .. include:: Date/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.900:
 .. include:: Date/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.editors.9999:
 .. include:: Date/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.predefineddefaults:
 .. include:: Date/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.10:
 .. include:: Date/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.10.identifier:
 .. include:: Date/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.100:
 .. include:: Date/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.200:
 .. include:: Date/formEditor/propertyCollections/validators/10/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.250:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.250:
 .. include:: Date/formEditor/propertyCollections/validators/10/editors/250.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.300:
 .. include:: Date/formEditor/propertyCollections/validators/10/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: Date/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.20:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.20:
 .. include:: Date/formEditor/propertyCollections/validators/20.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.20.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.20.identifier:
 .. include:: Date/formEditor/propertyCollections/validators/20/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.20.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.20.editors.100:
 .. include:: Date/formEditor/propertyCollections/validators/20/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.20.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.20.editors.200:
 .. include:: Date/formEditor/propertyCollections/validators/20/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.20.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.20.editors.9999:
 .. include:: Date/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.30:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.30:
 .. include:: Date/formEditor/propertyCollections/validators/30.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.30.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.30.identifier:
 .. include:: Date/formEditor/propertyCollections/validators/30/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.100:
 .. include:: Date/formEditor/propertyCollections/validators/30/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.200:
 .. include:: Date/formEditor/propertyCollections/validators/30/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.300:
 .. include:: Date/formEditor/propertyCollections/validators/30/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.400:
 .. include:: Date/formEditor/propertyCollections/validators/30/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.30.editors.9999:
 .. include:: Date/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.40:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.40:
 .. include:: Date/formEditor/propertyCollections/validators/40.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.40.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.40.identifier:
 .. include:: Date/formEditor/propertyCollections/validators/40/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.40.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.40.editors.100:
 .. include:: Date/formEditor/propertyCollections/validators/40/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.40.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.40.editors.200:
 .. include:: Date/formEditor/propertyCollections/validators/40/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.40.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.40.editors.9999:
 .. include:: Date/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.50:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.50:
 .. include:: Date/formEditor/propertyCollections/validators/50.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.50.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.50.identifier:
 .. include:: Date/formEditor/propertyCollections/validators/50/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.50.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.50.editors.100:
 .. include:: Date/formEditor/propertyCollections/validators/50/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.50.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.50.editors.200:
 .. include:: Date/formEditor/propertyCollections/validators/50/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.50.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.50.editors.9999:
 .. include:: Date/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.60:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.60:
 .. include:: Date/formEditor/propertyCollections/validators/60.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.60.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.60.identifier:
 .. include:: Date/formEditor/propertyCollections/validators/60/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.60.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.60.editors.100:
 .. include:: Date/formEditor/propertyCollections/validators/60/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.60.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.60.editors.200:
 .. include:: Date/formEditor/propertyCollections/validators/60/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.60.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.60.editors.9999:
 .. include:: Date/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.70:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.70:
 .. include:: Date/formEditor/propertyCollections/validators/70.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.70.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.70.identifier:
 .. include:: Date/formEditor/propertyCollections/validators/70/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.100:
 .. include:: Date/formEditor/propertyCollections/validators/70/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.200:
 .. include:: Date/formEditor/propertyCollections/validators/70/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.300:
 .. include:: Date/formEditor/propertyCollections/validators/70/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.400:
 .. include:: Date/formEditor/propertyCollections/validators/70/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.70.editors.9999:
 .. include:: Date/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.80:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.80:
 .. include:: Date/formEditor/propertyCollections/validators/80.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.80.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.80.identifier:
 .. include:: Date/formEditor/propertyCollections/validators/80/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.80.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.80.editors.100:
 .. include:: Date/formEditor/propertyCollections/validators/80/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.80.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.80.editors.200:
 .. include:: Date/formEditor/propertyCollections/validators/80/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.80.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.80.editors.300:
 .. include:: Date/formEditor/propertyCollections/validators/80/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.propertycollections.validators.80.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.propertycollections.validators.80.editors.9999:
 .. include:: Date/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.label:
 .. include:: Date/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.group:
 .. include:: Date/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.groupsorting:
 .. include:: Date/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.date.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.date.formeditor.iconidentifier:
 .. include:: Date/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/100.rst.txt
index 6420d3c56e4b35c776e5b27905e21284f4fb44a7..efe3b46b1365fd6fce2cd9e2fc196e5d956c1085 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/200.rst.txt
index c13cbfc30e3dbdd6706ade9fa077c694064b7acc..3104a2cc01f1bb0b10976f7fedf3367f8cad86eb 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/230.rst.txt
index 32799312446a5607cc31038442f1b278a314e695..9fe009bfea644825e7abb08b1311f4006f0babf2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/500.rst.txt
index bfb38eb3080bfd117bcd293be2b89e0181bbc256..7fb7bb155f2ae2b7b5b4b513413d429dcc460963 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/550.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/550.rst.txt
index 72c762a3de7d2e047d018153eb02b1de881af6ef..b753f48ca716801bbb4137cd12b242faa4fe0d7c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/550.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/550.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.550
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.550
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/700.rst.txt
index d678543f38fe46f2cd569538c30f025e1ebc5348..b56c9e12ea1125dcdb6271ec93a5fb8dd5a9c23f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/800.rst.txt
index 4288e7de274584bf983650e4dc238dd270d58b8d..345977e835fc6e1df1c6c3f3ef5af3467aa60142 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/800.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/900.rst.txt
index ff72cb03250378485e6366bf7b8cfec4fad0c7d4..a627c2709d37555e614ced4a50d7f4a04255043c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/9999.rst.txt
index 6da72158a68458c22313d355fa3b4750beeb9895..b3cdb8e8b248609e2e4db10e2382b5e6c4ebcdb6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/group.rst.txt
index e7496c12c889536ccffa57e8a25f1486b44fce6b..43488428c7d19d957afa7fe3b0ee365c1c77a3c6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: html5
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/iconIdentifier.rst.txt
index 05c395cc37789e0fadc9514750fe06587f4dbb5e..c7fa43db9e684d35d900b20070a647a25525324c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the ``\TYPO3\CMS\Core\Imaging\IconRegistry``.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index d75f0ff5166d3b8c09f58e28c77ccf6413cf71d0..0645a36b1b4d025e3b6271bf50b99793ce880df2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/200.rst.txt
index 65f0d24e050ca57f2fa7bbcbf0c5ed5c4b31be08..4f5ba3cf64ed2ae93759ff5fb30deb32ef7157c1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/200.rst.txt
@@ -6,7 +6,7 @@ formEditor.propertyCollections.validators.10.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.10.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor>`
+      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/250.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/250.rst.txt
index 6a839aeff8c731d0a3ed8a1f9ce7db3154399bd6..685a102be647688fe461b9d173ededa5247a17a5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/250.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/250.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.250
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.10.editors.250
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/300.rst.txt
index a47b42a10ef29807af201438e2c3954001c705d5..d5865d464649deb30bdc38ae2f87dd40e29a1b30 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.10.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index cc686db106c2dfffa2fe2758dd6cde268b8273eb..57e66b38caa7ed7cf2ccba17e98d1411e0869ddb 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/identifier.rst.txt
index 7c12f6d28044293da3b04c859fb0b22be660868b..baf4968dec8161221f546cb0c57e1dce2f08bd1c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/100.rst.txt
index c00e411ee088509e34aadad93f17e863431df8fa..b40983955956b5a371ed96c3b65c30a71cd192c5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.20.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/200.rst.txt
index 316e661fb9e29d9ca43a4f00d3315df1953e8a04..fbc8fda73a558dd2e2f6aa1f4cf2cc7977e8a8d4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/200.rst.txt
@@ -6,7 +6,7 @@ formEditor.propertyCollections.validators.20.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.20.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor>`
+      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
index c1f486bf59f00211bcc28db4645aac1f7e5db8c8..6716f820ea1cac032ec3fe6afb70d5a51f7f4e98 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.20.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/identifier.rst.txt
index be98debefbf396350a5c569556b24f7fed56b153..0f7ed2d500ed997f2edd2c0eab325bb8c6071da1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/20/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.20.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/100.rst.txt
index 81b27d13420f97166da6f2dd0475eb4f8427ced8..0e7ff37864ed59b8acf0010b0678f730eca5f8fc 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.30.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/200.rst.txt
index b4c573b7b23246ecee40447ff38df099fec99506..9f877e3fc196182886fb4af159591142d99f381a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.30.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/300.rst.txt
index 6da6ceef361440cec2c9a23674ea64de6406aa71..dc87ee486566ae7dfb8b197f7a2c9176dbeb3aa9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.30.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/400.rst.txt
index 09db4ffe4bc7bd2cd150125975353acac672bdfd..70b045c304cc0d42fcc379a0d4a8b7db2cf5b875 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/400.rst.txt
@@ -6,7 +6,7 @@ formEditor.propertyCollections.validators.30.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.30.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor>`
+      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
index 3aa0e4c178dcdc6945f1587aa052dcc1232dbb7b..b82145af83b1ff0dea3535993c28fe0f6accb1f6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.30.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/identifier.rst.txt
index aa356d213e289b069ea327c45954e76d4a819131..80223d11904604101385618282f9191996102d35 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/30/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.30.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/100.rst.txt
index 7aec56e0d002c804ab0130ed1e8def36f239b79e..e5e5d6390101aa9d90778711f177bd8bf8995ec5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.40.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/200.rst.txt
index 90292771fd46f017bca530d7dd19c34b975c261f..158f4ae67d86ddcd2422a721828379504eabcfbf 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/200.rst.txt
@@ -6,7 +6,7 @@ formEditor.propertyCollections.validators.40.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.40.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor>`
+      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
index e01aed252b90f6d31b2d35e8a20a0a80c7e6ec2a..1be0499cd57d902f422d4630bc3e27e63ec3e211 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.40.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/identifier.rst.txt
index 7f33f57480565540d1725ec53892a37d4ea14134..0666619d0a9e85263593f8e475c2be8631732bd7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/40/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.40.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/100.rst.txt
index 6bda1f16a2eb4fd6af5a41721516f4bdd71fbf39..b1742f9977869174eb4168166c67ab2e2181647d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.50.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/200.rst.txt
index caf318734ac41dbe521772f8aa2bb46bbfabb552..f4be168b56629ed81ee96aec387310817e04148c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/200.rst.txt
@@ -6,7 +6,7 @@ formEditor.propertyCollections.validators.50.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.50.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor>`
+      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
index 206a6e74cb84807727b397f9af27bf0b7bfdc5ae..437b3300299b78548f828f6b3860edc466e8a1da 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.50.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/identifier.rst.txt
index 1b4dcc6edc0748042762eb6a2c4a4f712a4b345a..d1effafd371d1d457ed394636383306d8737e1ad 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/50/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.50.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/100.rst.txt
index d3e036d9773ef7bd4d88ac5bae98afc37a3e24ae..4041903dc32eadc6850fed2437eb58f0ee988861 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.60.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/200.rst.txt
index 9cb20de23ed37247229a5ed882dcebce3d088c5b..f628ee3103f44f63699428a2bfaa0e9d676b86f6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/200.rst.txt
@@ -6,7 +6,7 @@ formEditor.propertyCollections.validators.60.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.60.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor>`
+      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
index 20b5cd7629307e31df10d6b8e70b9cd243deabd1..3d404f958739bb57e5784a151fed765bab5166e8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.60.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/identifier.rst.txt
index ec96884b6bd9398a48a6b67df7bf23cc2f364a03..8364859da7cd961abe238dc4a98bfffcf7169ee2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/60/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.60.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/100.rst.txt
index cdd3e75eca234e05b423b2285654f8e2f43fe841..cdc966fcf9651f6c8b13b5b8362d0523badb6d8c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.70.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/200.rst.txt
index a8c8019e314d3a0cbfa308c08d91d0472d938dee..c97a7e3bfb422e5df3b3e31fbd8d9ebb7070b96e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.70.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/300.rst.txt
index c4489951e7395436bd0ffe71b3f4c47cf982b7a5..b527123b0b7599476900c4d2d004c8d853cc87dd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.70.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/400.rst.txt
index 890812915f22caf3120b1dc2a2277fc2a2f419f8..41cb3ae88ed8ebcf39d00635a6723d76ff51d569 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/400.rst.txt
@@ -6,7 +6,7 @@ formEditor.propertyCollections.validators.70.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.70.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor>`
+      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
index 75cd1b27c3b7cdcf1bf10fc3a4a7efbe7da62776..45a41956a38f5796f4c427136e7f3915547e5f6c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.70.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/identifier.rst.txt
index 2a2c67758565e8ae3753f937ad349cecd8e40e98..f776a25684d315d121fe5a41c0ac75235855169c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/70/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.70.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/100.rst.txt
index e3993d746f1ab5451c6cffa3f865b95cde713792..706683a46145b8db483f421f43e0f5f694acb879 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.80.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/200.rst.txt
index 5f2fa2b59ae0f281b6a8d955c8e30387d8e07f12..f3d27aaaf547e3a4f87203ca7c431106a0e3e964 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.80.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/300.rst.txt
index aa1696e39cd0fb3c708fb902fd2153e5f029083a..e31e8a3f451031c753167cbf49b1f581a1186ac1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/300.rst.txt
@@ -6,7 +6,7 @@ formEditor.propertyCollections.validators.80.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.80.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validationerrormessageeditor>`
+      array/ :ref:`[ValidationErrorMessageEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validationerrormessageeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
index d843279fb81d5a2a8db01664e9e8e4ff2dbf843b..c83885da11c808383f2e0664f58a3f2f43cee67a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Date.formEditor.propertyCollections.validators.80.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/identifier.rst.txt
index 7b3b4454bde0e3b174f0bd41eeab5f7fa0e845a2..c6694419a0eca3589d8bdc18415acd147ab22b53 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Date/formEditor/propertyCollections/validators/80/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.80.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker.rst
index b00cb42b432df69820a93b031301adb30b410d30..f8bde27cab1e68966cc89096d98a5a3577e739bc 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker.rst
@@ -1,106 +1,106 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.datepicker:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker:
 
 ============
 [DatePicker]
 ============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.datepicker-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.implementationclassname:
 .. include:: DatePicker/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.containerclassattribute:
 .. include:: DatePicker/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.elementclassattribute:
 .. include:: DatePicker/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.elementDescription:
 .. include:: DatePicker/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.elementerrorclassattribute:
 .. include:: DatePicker/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.timeselectorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.timeselectorclassattribute:
 .. include:: DatePicker/properties/timeSelectorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.timeselectorhourlabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.timeselectorhourlabel:
 .. include:: DatePicker/properties/timeSelectorHourLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.timeselectorminutelabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.timeselectorminutelabel:
 .. include:: DatePicker/properties/timeSelectorMinuteLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.dateformat:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.dateformat:
 .. include:: DatePicker/properties/dateFormat.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.enabledatepicker:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.enabledatepicker:
 .. include:: DatePicker/properties/enableDatePicker.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.properties.displaytimeselector:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.properties.displaytimeselector:
 .. include:: DatePicker/properties/displayTimeSelector.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor:
 .. include:: DatePicker/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.100:
 .. include:: DatePicker/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.200:
 .. include:: DatePicker/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.230:
 .. include:: DatePicker/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.300:
 .. include:: DatePicker/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.400:
 .. include:: DatePicker/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.500:
 .. include:: DatePicker/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.700:
 .. include:: DatePicker/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.800:
 .. include:: DatePicker/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.900:
 .. include:: DatePicker/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.editors.9999:
 .. include:: DatePicker/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.predefineddefaults:
 .. include:: DatePicker/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.propertycollections.validators.10:
 .. include:: DatePicker/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.propertycollections.validators.10.identifier:
 .. include:: DatePicker/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.propertycollections.validators.10.editors.100:
 .. include:: DatePicker/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: DatePicker/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.label:
 .. include:: DatePicker/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.group:
 .. include:: DatePicker/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.groupsorting:
 .. include:: DatePicker/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.datepicker.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.datepicker.formeditor.iconidentifier:
 .. include:: DatePicker/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/100.rst.txt
index 309e895b889e145146dd03202641f527914eda9e..8ed5a724ce3dcab6e64d764a7f47693f49bcd13f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/200.rst.txt
index cceb596993b2f2bb7fcfff8fa436afd0387ccd9e..9561e415e8a92d7931596e0b6044d6509bdef072 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/230.rst.txt
index d76d2f70ac268386108d202bdb117fe91ccf6c33..51224aed881de7587234f33e02527f54c74fa699 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/300.rst.txt
index 3a9d25ad08564f6efdb104caabfd1d36ab2e993f..b42e6b08248169574711f6ed1aba8e9a1d9f6855 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/400.rst.txt
index 028e215ba3e0683db686af0cc52e8293033b9487..b537e3d26225358ea4d3f65e6c16d1a57227d374 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[CheckboxEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor>`
+      array/ :ref:`[CheckboxEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/500.rst.txt
index f16acd3fb7209bb86e7ce592ad170bbd077d9f97..4f7fd504c72274b8bd400969e0e4c8a9adf50258 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.AdvancedPassword.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[CheckboxEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor>`
+      array/ :ref:`[CheckboxEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/700.rst.txt
index 996fd3c2a46663972edd09388a769a92f528b99e..023854422644c4e8cf676a7efccdde1caf77efe3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/800.rst.txt
index dad03b196b5e6e5d01b08aa0416dc7fc310463c9..cda86fca24108bfcd348c09e4a94624cd296a42b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/900.rst.txt
index ae0294230aca33ed3979501c3d446cfaed91eec0..3f2c573588a7439908554b435438856f7c51dbb4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/9999.rst.txt
index 90ffa2e053b0092a800745ac8b23ed23a2e15171..dcec5554232ea3b09dadcf8c4741910d53ff4694 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/group.rst.txt
index 12abd77fb7e3fb3a5e9bc5fee9f7acf96ce7cda3..d1274ca46997a1001cdf2350c94a27ae66cd27a8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: custom
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/iconIdentifier.rst.txt
index f0cb16c17ff7aac9df7401c3e67a712fbb811a2d..fdd1b27ed9afdd3d46eb05c0dd4052680ade1ba2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index a50ed76d9cf982ac6de968ed2a43b649facf0547..6a6873ab65669dedbaef598cfa849b85cd1bca0b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index 72d715ce48c07958f2880bf8c57fdaa83dbe7081..c773db07bf7de3670ca331712b5c53cf358e468c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.DatePicker.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/identifier.rst.txt
index ea6da4f11fe9501350fbe400dbb28b585794ade5..fd3164805ea1fdfc46f5cd2ad4fa211efb05bbad 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/DatePicker/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email.rst
index b6f426106f551e83f4fbd1cf34ec8be45121c5c1..b4dbb373d6a85b011bd3fde10f234069d9b74aa5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email.rst
@@ -1,85 +1,85 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.email:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email:
 
 =======
 [Email]
 =======
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.email-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.implementationclassname:
 .. include:: Email/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.properties.containerclassattribute:
 .. include:: Email/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.properties.elementclassattribute:
 .. include:: Email/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.properties.elementDescription:
 .. include:: Email/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.properties.elementerrorclassattribute:
 .. include:: Email/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.validators:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.validators:
 .. include:: Email/validators.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor:
 .. include:: Email/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.100:
 .. include:: Email/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.200:
 .. include:: Email/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.230:
 .. include:: Email/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.400:
 .. include:: Email/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.500:
 .. include:: Email/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.700:
 .. include:: Email/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.800:
 .. include:: Email/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.900:
 .. include:: Email/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.editors.9999:
 .. include:: Email/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.predefineddefaults:
 .. include:: Email/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.propertycollections.validators.40:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.propertycollections.validators.40:
 .. include:: Email/formEditor/propertyCollections/validators/40.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.propertycollections.validators.40.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.propertycollections.validators.40.identifier:
 .. include:: Email/formEditor/propertyCollections/validators/40/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.propertycollections.validators.40.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.propertycollections.validators.40.editors.100:
 .. include:: Email/formEditor/propertyCollections/validators/40/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.label:
 .. include:: Email/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.group:
 .. include:: Email/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.groupsorting:
 .. include:: Email/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.email.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.email.formeditor.iconidentifier:
 .. include:: Email/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/100.rst.txt
index d904ae59a50e92d9559bde1aa2c1b802b183824d..1c6136f18e4b1681460a7f080bc6c608290fa144 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/200.rst.txt
index e38957eff8ea9ef6a719e280e0a3feb138f4d57d..9cb07bcdc087aa041ab560e421437dfd795e63b4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/230.rst.txt
index fc766943ea71ac5ee1573a51e16445e6bf6d6e4b..55c45a5b6739d5b43160b36bce2fb9026e133a56 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/400.rst.txt
index 5aae1d1e33cc57d2e25ec276f5522a3308e46051..2f3be9962c103f1ea43285369fe0edebe82a8b80 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/500.rst.txt
index d48dc109473771d26686663f8fc0c0aefcb6c324..93b1bd4e6155af2c7e8f8d31c9123db36c21c757 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/700.rst.txt
index f16d323094dc2fb7e5e261c1f12891c18d54ebb1..bc54fa2fc7ca955277843a18aeda2958fe3349d2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/800.rst.txt
index d326f708cb1bb0b3bf4d5bee4106a065868849e7..97d494b930bf02a9e266031cbbfef7dbb44dd057 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/900.rst.txt
index fd11358a0d09645b50273479d425afe9f7236239..7d71d0702e56580e4cc0fbf51af37488db7054c0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/9999.rst.txt
index f6a8e4f505cab6992a5be871e608cb57575d43b0..fa057c98582cc946ee35f92b676df7027a36c599 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/iconIdentifier.rst.txt
index 3559e819c0f426a58ce74c11505a2d6186ac6bd8..f6b4e400ab7c0d3f2a4750f26b132e239b84b5c0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/editors/100.rst.txt
index 8fa790bf73949be000c5df29d31211b657a798fa..ff9d8402dc2ed83772fcfdc2b646395b317aba9c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Email.formEditor.propertyCollections.validators.40.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/identifier.rst.txt
index decfe705484d09d3de8fd152ea62d78e39eb833d..1bd9d43d27394fa4b1d2b98dd1e621fee9d72541 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Email/formEditor/propertyCollections/validators/40/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.40.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset.rst
index 1ef0b6c6e98c9c2fbf6e915666c8f052f12a2360..a8567f143a3316e1e26008a1428ff4db6e257354 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset.rst
@@ -1,58 +1,58 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.fieldset:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset:
 
 ==========
 [Fieldset]
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.fieldset-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.implementationclassname:
 .. include:: Fieldset/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.properties.elementclassattribute:
 .. include:: Fieldset/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.properties.elementerrorclassattribute:
 .. include:: Fieldset/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.renderingoptions._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.renderingoptions._iscompositeformelement:
 .. include:: Fieldset/renderingOptions/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor:
 .. include:: Fieldset/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.editors.100:
 .. include:: Fieldset/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.editors.200:
 .. include:: Fieldset/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.editors.700:
 .. include:: Fieldset/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.editors.9999:
 .. include:: Fieldset/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.predefineddefaults:
 .. include:: Fieldset/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.label:
 .. include:: Fieldset/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.group:
 .. include:: Fieldset/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.groupsorting:
 .. include:: Fieldset/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor.iconidentifier:
 .. include:: Fieldset/formEditor/iconIdentifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fieldset.formeditor._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fieldset.formeditor._iscompositeformelement:
 .. include:: Fieldset/formEditor/_isCompositeFormElement.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/100.rst.txt
index fa3c791ad180ddfcf18e67c691850fc134e7e5d7..cf61f66394eaf9d18f6b1fe517432ee93ca64267 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Fieldset.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/200.rst.txt
index d7d917835358d5be0ffb7fd2c6714fd8eeba2b7e..e8a6e86c57a0196fc706d9644755608e89e3a9ab 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Fieldset.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/700.rst.txt
index d4c1bca8f21111ca6608b021436385b493359d3e..12cba83d2c67bcbe543c239144a6bcd66eaf2c15 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Fieldset.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/9999.rst.txt
index f2c9f435055ab2cda89c4017b62e334fe3445bdc..3602628acfd9e92674b8281c62dfffa8f0c417cb 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Fieldset.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/group.rst.txt
index fe0cd6f987819b596a8dc9f9a5921feb64d04476..7bfc551bbd2cb578de8b7dd34092c9cbc35b1bd9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: container
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/iconIdentifier.rst.txt
index 4d7903f2cf21d7d1f5e8078ef4b22b7654434b94..0fab81b9961b636b3054c5066599694fe64390c5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Fieldset/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload.rst
index bbe3e183342f207f25770643acf665fd6cf96910..f3af4921e34bfb5dcb3d8f9d7aa0c754cbddb488 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload.rst
@@ -1,97 +1,97 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.fileupload:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload:
 
 ============
 [FileUpload]
 ============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.fileupload-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.implementationclassname:
 .. include:: FileUpload/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.properties.containerclassattribute:
 .. include:: FileUpload/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.properties.elementclassattribute:
 .. include:: FileUpload/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.properties.elementDescription:
 .. include:: FileUpload/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.properties.elementerrorclassattribute:
 .. include:: FileUpload/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.properties.savetofilemount:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.properties.savetofilemount:
 .. include:: FileUpload/properties/saveToFileMount.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.properties.allowedmimetypes:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.properties.allowedmimetypes:
 .. include:: FileUpload/properties/allowedMimeTypes.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor:
 .. include:: FileUpload/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.100:
 .. include:: FileUpload/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.200:
 .. include:: FileUpload/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.230:
 .. include:: FileUpload/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.300:
 .. include:: FileUpload/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.400:
 .. include:: FileUpload/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.700:
 .. include:: FileUpload/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.800:
 .. include:: FileUpload/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.900:
 .. include:: FileUpload/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.editors.9999:
 .. include:: FileUpload/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.predefineddefaults:
 .. include:: FileUpload/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10:
 .. include:: FileUpload/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.identifier:
 .. include:: FileUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.editors.100:
 .. include:: FileUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.editors.200:
 .. include:: FileUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.editors.300:
 .. include:: FileUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: FileUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.label:
 .. include:: FileUpload/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.group:
 .. include:: FileUpload/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.groupsorting:
 .. include:: FileUpload/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.fileupload.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.fileupload.formeditor.iconidentifier:
 .. include:: FileUpload/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/100.rst.txt
index da31a95af344f4c50fed6c1223991edf3218cad0..2296aef5a1c69a99fff5e6fcc92ef572c591f92c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/200.rst.txt
index 1aa58ce514ff06675c81c5df4c9049cbd9d09e87..ea52182658867a4d4f953a1032dd3e83e0bd41f6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/230.rst.txt
index 08325597a764adb235b838e864e110819df9e292..93827c3fde81f2b424978102248415c02effe599 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/300.rst.txt
index f65063e4419ea784adafe3eb941f7f947f325225..096e60009d19050fa4cadd146cf10e62b2f5d92c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[MultiSelectEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.multiselecteditor>`
+      array/ :ref:`[MultiSelectEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.multiselecteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/400.rst.txt
index f65fa1ac13ddb83bf7ce407d5a7b01252d136e5a..7a08b006eddc468391c3cc8cf6668695af815221 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[SingleSelectEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.singleselecteditor>`
+      array/ :ref:`[SingleSelectEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.singleselecteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/700.rst.txt
index b271c1f7acbebc450df99e5e0c272ccc3659c7b8..774fa4167bb5b41f284721d78029ac919110fe8f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/800.rst.txt
index 67c8c994ace72831a9f26a8dbf75462f0dc64818..d24496063d4c0c671edd4de0f60d948c8dc00eb0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/900.rst.txt
index 4229c842d5214eea1cfaf420ca13b6bbb55783e0..78c022ef43890219848aaca8a08faee87b1ff44e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/9999.rst.txt
index b40f94b90b93a64adb2abfc692e7357b55ace773..f2c88c1a3e102aa38ec24a7ef5f1bbc7e1a00ef8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/group.rst.txt
index 19e71b2f8775fe988861c7b9565580a9f7e3d04c..f65495959420455e3675151bc86f12eb6a423a23 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: custom
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/iconIdentifier.rst.txt
index a01cc500daeeb419c85e5b037a674db57ec493cd..e845a1d9ff9ce0b25235ee69d422dd445b7e868a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index f88a2442691d66bf03c79e79e725cf96cecb98f5..8ec514df008220130950e69a041719723fce7db1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt
index 042ef3929b3c11b22af52bc3407924d86c1ff406..b35df4486a0d512433c936e2d61c0715880c4fe3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt
index df6ef0a6f21fc7734c685d3db861ffd921335eae..38ac5dba7c407ee5ab92fcf18e31332dd1f3c2e9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index ac98a631adceb3d8987bfeceb4fbe532dd958fd2..9321f1fcebbbaa28c76bf38298124448ef69ef03 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.FileUpload.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt
index 5f812dc430edf18d0464624a7cebb0cc7948a067..09e5cf652a6ae0f62e2a47e75a653ed1e4d5fc4d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/FileUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing `<validatorIdentifier>`.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form.rst
index df217240c35dfa590d0b20110fb956acfc5b6bdd..1837c97b47c613d3e47dcd23fd3f624a9b7d0ecd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form.rst
@@ -1,328 +1,328 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.form:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form:
 
 ======
 [Form]
 ======
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.form-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.templateVariant:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.templateVariant:
 .. include:: Form/renderingOptions/templateVariant.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.translation.translationfiles:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.translation.translationfiles:
 .. include:: Form/renderingOptions/translation/translationFiles.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.templaterootpaths:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.templaterootpaths:
 .. include:: Form/renderingOptions/templateRootPaths.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.partialrootpaths:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.partialrootpaths:
 .. include:: Form/renderingOptions/partialRootPaths.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.layoutrootpaths:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.layoutrootpaths:
 .. include:: Form/renderingOptions/layoutRootPaths.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.addquerystring:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.addquerystring:
 .. include:: Form/renderingOptions/addQueryString.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.argumentstobeexcludedfromquerystring:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.argumentstobeexcludedfromquerystring:
 .. include:: Form/renderingOptions/argumentsToBeExcludedFromQueryString.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.additionalparams:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.additionalparams:
 .. include:: Form/renderingOptions/additionalParams.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.controlleraction:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.controlleraction:
 .. include:: Form/renderingOptions/controllerAction.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.httpmethod:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.httpmethod:
 .. include:: Form/renderingOptions/httpMethod.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.httpenctype:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.httpenctype:
 .. include:: Form/renderingOptions/httpEnctype.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions._iscompositeformelement:
 .. include:: Form/renderingOptions/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions._istoplevelformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions._istoplevelformelement:
 .. include:: Form/renderingOptions/_isTopLevelFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.honeypot.enable:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.honeypot.enable:
 .. include:: Form/renderingOptions/honeypot/enable.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.honeypot.formelementtouse:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.honeypot.formelementtouse:
 .. include:: Form/renderingOptions/honeypot/formElementToUse.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.submitbuttonlabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.submitbuttonlabel:
 .. include:: Form/renderingOptions/submitButtonLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.skipunknownelements:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.skipunknownelements:
 .. include:: Form/renderingOptions/skipUnknownElements.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor:
 .. include:: Form/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.editors.100:
 .. include:: Form/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.editors.200:
 .. include:: Form/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.editors.300:
 .. include:: Form/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.editors.900:
 .. include:: Form/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.predefineddefaults:
 .. include:: Form/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor._iscompositeformelement:
 .. include:: Form/formEditor/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor._istoplevelformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor._istoplevelformelement:
 .. include:: Form/formEditor/_isTopLevelFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.savesuccessflashmessagetitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.savesuccessflashmessagetitle:
 .. include:: Form/formEditor/saveSuccessFlashMessageTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.savesuccessflashmessagemessage:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.savesuccessflashmessagemessage:
 .. include:: Form/formEditor/saveSuccessFlashMessageMessage.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.saveerrorflashmessagetitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.saveerrorflashmessagetitle:
 .. include:: Form/formEditor/saveErrorFlashMessageTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.saveerrorflashmessagemessage:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.saveerrorflashmessagemessage:
 .. include:: Form/formEditor/saveErrorFlashMessageMessage.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalvalidationerrorsdialogtitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalvalidationerrorsdialogtitle:
 .. include:: Form/formEditor/modalValidationErrorsDialogTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalvalidationerrorsconfirmButton:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalvalidationerrorsconfirmButton:
 .. include:: Form/formEditor/modalValidationErrorsConfirmButton.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalinsertelementsdialogtitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalinsertelementsdialogtitle:
 .. include:: Form/formEditor/modalInsertElementsDialogTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalinsertpagesdialogtitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalinsertpagesdialogtitle:
 .. include:: Form/formEditor/modalInsertPagesDialogTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalclosedialogmessage:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalclosedialogmessage:
 .. include:: Form/formEditor/modalCloseDialogMessage.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalclosedialogtitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalclosedialogtitle:
 .. include:: Form/formEditor/modalCloseDialogTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalcloseconfirmbutton:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalcloseconfirmbutton:
 .. include:: Form/formEditor/modalCloseConfirmButton.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalclosecancelbutton:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalclosecancelbutton:
 .. include:: Form/formEditor/modalCloseCancelButton.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalremoveelementdialogtitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalremoveelementdialogtitle:
 .. include:: Form/formEditor/modalRemoveElementDialogTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalremoveelementdialogmessage:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalremoveelementdialogmessage:
 .. include:: Form/formEditor/modalRemoveElementDialogMessage.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalremoveelementconfirmbutton:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalremoveelementconfirmbutton:
 .. include:: Form/formEditor/modalRemoveElementConfirmButton.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalremoveelementcancelbutton:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalremoveelementcancelbutton:
 .. include:: Form/formEditor/modalRemoveElementCancelButton.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalremoveelementlastavailablepageflashmessagetitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalremoveelementlastavailablepageflashmessagetitle:
 .. include:: Form/formEditor/modalRemoveElementLastAvailablePageFlashMessageTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.modalremoveelementlastavailablepageflashmessagemessage:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.modalremoveelementlastavailablepageflashmessagemessage:
 .. include:: Form/formEditor/modalRemoveElementLastAvailablePageFlashMessageMessage.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.inspectoreditorformelementselectornoelements:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.inspectoreditorformelementselectornoelements:
 .. include:: Form/formEditor/inspectorEditorFormElementSelectorNoElements.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.paginationtitle:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.paginationtitle:
 .. include:: Form/formEditor/paginationTitle.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.iconidentifier:
 .. include:: Form/formEditor/iconIdentifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10:
 .. include:: Form/formEditor/propertyCollections/finishers/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.identifier:
 .. include:: Form/formEditor/propertyCollections/finishers/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.100:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.200:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.350:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.350:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/350.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.500:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.600:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.600:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/600.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.750:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.750:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/750.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.850:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.850:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/850.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.950:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.950:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/950.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.1050:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.1050:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/1050.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.1100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.1100:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/1100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.1200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.1200:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/1200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.1400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.1400:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/1400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.10.editors.9999:
 .. include:: Form/formEditor/propertyCollections/finishers/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20:
 .. include:: Form/formEditor/propertyCollections/finishers/20.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.identifier:
 .. include:: Form/formEditor/propertyCollections/finishers/20/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.100:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.200:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.350:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.350:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/350.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.500:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.600:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.600:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/600.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.750:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.750:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/750.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.850:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.850:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/850.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.950:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.950:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/950.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.1050:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.1050:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/1050.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.1100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.1100:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/1100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.1200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.1200:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/1200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.1400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.1400:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/1400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.20.editors.9999:
 .. include:: Form/formEditor/propertyCollections/finishers/20/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.30:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.30:
 .. include:: Form/formEditor/propertyCollections/finishers/30.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.30.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.30.identifier:
 .. include:: Form/formEditor/propertyCollections/finishers/30/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.100:
 .. include:: Form/formEditor/propertyCollections/finishers/30/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.200:
 .. include:: Form/formEditor/propertyCollections/finishers/30/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.300:
 .. include:: Form/formEditor/propertyCollections/finishers/30/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.400:
 .. include:: Form/formEditor/propertyCollections/finishers/30/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.30.editors.9999:
 .. include:: Form/formEditor/propertyCollections/finishers/30/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.40:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.40:
 .. include:: Form/formEditor/propertyCollections/finishers/40.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.40.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.40.identifier:
 .. include:: Form/formEditor/propertyCollections/finishers/40/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.40.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.40.editors.100:
 .. include:: Form/formEditor/propertyCollections/finishers/40/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.40.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.40.editors.9999:
 .. include:: Form/formEditor/propertyCollections/finishers/40/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.50:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.50:
 .. include:: Form/formEditor/propertyCollections/finishers/50.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.50.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.50.identifier:
 .. include:: Form/formEditor/propertyCollections/finishers/50/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.50.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.50.editors.100:
 .. include:: Form/formEditor/propertyCollections/finishers/50/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.50.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.50.editors.200:
 .. include:: Form/formEditor/propertyCollections/finishers/50/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.50.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.50.editors.300:
 .. include:: Form/formEditor/propertyCollections/finishers/50/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.50.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.50.editors.9999:
 .. include:: Form/formEditor/propertyCollections/finishers/50/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.60:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.60:
 .. include:: Form/formEditor/propertyCollections/finishers/60.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.60.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.60.identifier:
 .. include:: Form/formEditor/propertyCollections/finishers/60/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.60.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.60.editors.100:
 .. include:: Form/formEditor/propertyCollections/finishers/60/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.60.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.60.editors.9999:
 .. include:: Form/formEditor/propertyCollections/finishers/60/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.70:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.70:
 .. include:: Form/formEditor/propertyCollections/finishers/70.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.70.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.70.identifier:
 .. include:: Form/formEditor/propertyCollections/finishers/70/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.70.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.70.editors.100:
 .. include:: Form/formEditor/propertyCollections/finishers/70/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.70.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.70.editors.9999:
 .. include:: Form/formEditor/propertyCollections/finishers/70/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.80:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.80:
 .. include:: Form/formEditor/propertyCollections/finishers/80.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.80.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.80.identifier:
 .. include:: Form/formEditor/propertyCollections/finishers/80/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.80.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.80.editors.100:
 .. include:: Form/formEditor/propertyCollections/finishers/80/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.form.formeditor.propertycollections.finishers.80.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.form.formeditor.propertycollections.finishers.80.editors.9999:
 .. include:: Form/formEditor/propertyCollections/finishers/80/editors/9999.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/100.rst.txt
index 2a9fbd0a6b69c246074e10c49cd5c679e59117d1..e9480a9a1c0a295e6dedc858fdf7d8fe1f191c7f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/200.rst.txt
index 0352d1dd4f919c1b92f9898bb8fb757e79ff42ad..9e0830becc397ace894418f1f018c136b56ec5a2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/300.rst.txt
index f396c2190d207230991b2bc04313dd958c44ad39..51767405787538251ca94d437974bf1e24f74564 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/900.rst.txt
index 21017a59623976076d70a918ce716d7676802ad8..ace1ffb8722546ffec3861f316ce632ceb80f11c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[FinishersEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.finisherseditor>`
+      array/ :ref:`[FinishersEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.finisherseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/iconIdentifier.rst.txt
index b0bad3ec25ee66b1c6579f14e435dcd8f7c5ddec..df50a94a6e087439bdc4b8a90f35f2d46c9d6a4d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/100.rst.txt
index 009c937b95075718891fc1ae77753f73bce97a8a..9407c54f56b3d5356fa5e51eb38fb65cbd5b425f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1050.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1050.rst.txt
index 79a67b0a9b666acfe02dd84fdb5cfc79e1e0c0e9..b6d49aed59e7cbdcd58970f89f9a0a04124fa84d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1050.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1050.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.1050
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.1050
 
 :aspect:`Data type`
-      array/ :ref:`[CheckboxEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor>`
+      array/ :ref:`[CheckboxEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1100.rst.txt
index c072dfffd8c8d751fe0eb76bc7b42105ab7fa6e4..25a1aa5ad5743d165251b4436a0ca08d4c39a529 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.1100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.1100
 
 :aspect:`Data type`
-      array/ :ref:`[CheckboxEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor>`
+      array/ :ref:`[CheckboxEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1200.rst.txt
index d122d74622f89d9c8f725d31385f8e6c76551293..61c7c3381c9dfecd05b83d8a0f9ee39b4ef0861d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.1200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.1200
 
 :aspect:`Data type`
-      array/ :ref:`[SingleSelectEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.singleselecteditor>`
+      array/ :ref:`[SingleSelectEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.singleselecteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1400.rst.txt
index f9c7b636e7beaaa7e3ba6e4a3784fd755068c9ef..c96ebabc814e12b98ec4e859c68bc7759e91a1e1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/1400.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.1400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.1400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/200.rst.txt
index 9bc765de443950416ba6ff74dbf96eacaf9b60da..43051152ad9dfa4502b24608626fc7ac27bc7fd4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/350.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/350.rst.txt
index ce0acd87eacb8be32599446d139eb9a238253d32..c2f2b8b1070dbcce51cf9bd819b8467b911fc6b7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/350.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/350.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.350
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.350
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/500.rst.txt
index 15e814dc89ef281440cc6a7cfe1d0d27cfa6511b..65d74d004766ef671dc7106adac8b067585431e3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/600.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/600.rst.txt
index ed73a518dc23e9126f5dc83c0015941e7ec96500..0ef5d42cf283329d7c40ad9d30cbe52a65678e0e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/600.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/600.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.600
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.600
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/750.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/750.rst.txt
index 0111bafcd7e82856a3bf8ca35fac2d3260e36531..31d5c6887e65656425623a42d98f82ced17ed259 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/750.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/750.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.750
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.750
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/850.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/850.rst.txt
index c27e8355a3ac975e44c2bca9bf1d6d6743ab7201..3c3010a1c644dc1c5fad9d29157b8eabd91e6928 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/850.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/850.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.850
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.850
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/950.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/950.rst.txt
index d64bdfcaeb00b46a1e13db93273bd57392734bfd..4a0b97750b698dc7058480a662f9a79bf61e40c0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/950.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/950.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.950
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.950
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/9999.rst.txt
index 8783cd518a8a448246405d819f29b6a6388cf604..3171d7dd8b2b9be17311b9e4f69140316a6726b6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/identifier.rst.txt
index c29fe5a94ce9fcce5dcf0632e4ae97e5a991cbda..b49c31897fbf2bbc85c77ab6f261472bca17b921 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.finishers.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/100.rst.txt
index d7ca5a2d04361bf8224ce78935f204fee8193a37..30f73a2a2e5ab9e4c23891e9cad37705852ba863 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1050.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1050.rst.txt
index bcc7fa92d42af95b3c1289399f5c906db83a63fc..b60e73beee6a7448cecd5c0b0feabc79630d50f5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1050.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1050.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.1050
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.1050
 
 :aspect:`Data type`
-      array/ :ref:`[CheckboxEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor>`
+      array/ :ref:`[CheckboxEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1100.rst.txt
index 0d6710e3f4f74769b73e1c5a58c6338eb103fee2..c1162b27039ea60d0dc1444adac9c2ef30b85d37 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.1100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.1100
 
 :aspect:`Data type`
-      array/ :ref:`[CheckboxEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.checkboxeditor>`
+      array/ :ref:`[CheckboxEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.checkboxeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1200.rst.txt
index 682ffbb6e4161687dbdbff19e316b0be01982750..a591a4d0c06c16c9fa7b038a19eb89ca4274bcea 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.1200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.1200
 
 :aspect:`Data type`
-      array/ :ref:`[SingleSelectEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.singleselecteditor>`
+      array/ :ref:`[SingleSelectEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.singleselecteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1400.rst.txt
index 541acb6176b65b7acce29db2c5a100f58f89be33..2d18652652ae914e142adb0786a15659b44028e3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/1400.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.1400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.1400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/200.rst.txt
index 35d6527dc7e5c4d8f591573e8c5b4c1bb4c49f62..46d1e2304d0303fdd68851aab263ffdca945d209 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/350.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/350.rst.txt
index d5ffd66684cdf269c5e5a4e111aa5e180f4b02c8..8de77e5a9ee2b9dc926b91ddf53f17bd090a26bf 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/350.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/350.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.350
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.350
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/500.rst.txt
index 250456bcebb091b5b09a4e523c50845ceaa658f9..00e4303f4ff87dcc1c0843e7560ce4601fd8aa9e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/600.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/600.rst.txt
index 02029571fcb934d1445ec95a5423cdd8ff5ed97b..492c9b7e7be78a19e6c41bcfa27e255bbf35d477 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/600.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/600.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.600
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.600
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/750.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/750.rst.txt
index c78ff550407e8e4cebf1573584f0b04435fe089a..4e80674ccec11d75b020753e3869d04b6016ed84 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/750.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/750.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.750
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.750
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/850.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/850.rst.txt
index 62e844bcbd701ab722d7984359f9bb625a535692..e9a074332dfa793bcc8bbd9152bedd46d7fbd19a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/850.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/850.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.850
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.850
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/950.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/950.rst.txt
index 264fee1d69e4f40b39a0f010bbc70136d0be154d..684547cd9f83883e186e06d0df40f69bebdce433 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/950.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/950.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.950
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.950
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/9999.rst.txt
index ce3658758e8bdc36c5ed8769e4e1e044b16e3c92..763411e7d3609ac11c625356e3a8a4840fb3f3ba 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.20.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.20.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/identifier.rst.txt
index 1dfd2a0fd472d46307ac3e7069b43b93a839b836..4edc5af95b87da2a10069a3443858cea0a6c42de 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/20/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.finishers.20.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/100.rst.txt
index 772a3e65d42f62d2d2c78d5cfa8719529665f698..64cafb57e4316eb6e4424b085299c345c5adb266 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.30.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.30.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/200.rst.txt
index b0e8bbbab450681662d4f1d93190721954063059..3cd48a8f2ea5fd5f3bba61298aebefaa3d782f85 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.30.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.30.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[Typo3WinBrowserEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.typo3winbrowsereditor>`
+      array/ :ref:`[Typo3WinBrowserEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.typo3winbrowsereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/300.rst.txt
index ca5b14338ec81820c6164657753de1cfcef98f1b..603346aadf5bec78815b2d41828d7c394039d355 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.30.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.30.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/400.rst.txt
index 35fd5bc93cd16ca30abcc6ebe4c970c927b61b68..f0fe03531d8c28cd12a60c5cf9b8968ac9948643 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.30.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.30.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/9999.rst.txt
index 1dfd418ac7a6a198bd57cec580843b9f3771f66d..a8abb15894f27452c0461b9afebff1ee5e5f5388 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.30.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.30.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/identifier.rst.txt
index 2fe47d3bfa2d6b753e758c6fd066e24872f444ab..1d9f595c085af892413775660d425920d8a44c0e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/30/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.finishers.30.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/editors/100.rst.txt
index cf3cd72d11a2a69bd76ae44bbdf962fb20749231..c7ce719a57acfbd7636d7d0421f7afdc6f5a146f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.40.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.40.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/editors/9999.rst.txt
index b5cc263c21bdbb360c9157bd094aca7d2193a4a7..e5e208283d0314a95b4d9a367aeb7f78388495ee 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.40.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.40.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/identifier.rst.txt
index 82dca3c048d15d4ea4b2ee2fd87670fde7f8f315..69cf82ad07b26735a129dc8ea693c375c2ff8d21 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/40/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.finishers.40.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/100.rst.txt
index 13f337a3aa2f97b8211f7045b204c882f032310c..ce26db5d26954aea9308b898e4c5774d66acfaf8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.50.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.50.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/200.rst.txt
index 271fdfccf61296cc017f1d23044a0614afb8102c..83aba2e2af87300a9cb8ebb7191c6f626213f0f3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.50.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.50.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[Typo3WinBrowserEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.typo3winbrowsereditor>`
+      array/ :ref:`[Typo3WinBrowserEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.typo3winbrowsereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/300.rst.txt
index 0ec859f9b8c7c998b5cf5186f5ca8cac361b6253..9f589dd425e8d995f26c10972f5c67e2bc25aed5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.50.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.50.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextareaEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.textareaeditor>`
+      array/ :ref:`[TextareaEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.textareaeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/9999.rst.txt
index 0395c00505dbf060896d7773f5245a8f253aebcf..d80cbd7456921d037fa8e2bd246bbd68ddc70463 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.50.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.50.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/identifier.rst.txt
index d5b39ab1cc0679aeb12c76d2cd74ca530bf7d4a3..02099baec03fa9c90f0acc56175f82fd35a160d5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/50/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.finishers.50.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/editors/100.rst.txt
index 3dcc249adda43ed9874bf1cdc6fd322608d2d707..52a835e1e3e984223fcf5bfc967832fbbb3e6108 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.60.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.60.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/editors/9999.rst.txt
index 997577221d90986d94ddd014bbf031e016d68927..d955f670341f68b8e44c6269cde4b0f4f0f3e0d2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.60.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.60.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/identifier.rst.txt
index 3c3c8e887509d3cf2634ec626be4f5580917ffb9..0c190acaacea68336cc0c3dac866e27614fc2f74 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/60/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.finishers.60.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/editors/100.rst.txt
index 975dd38bad2b9164923f845a305ec034423d9845..b56f5356e65529258a6c1afb58a105defef19572 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.70.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.70.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/editors/9999.rst.txt
index 8850a597127a87f55b7aaed621c24af3c59386bb..2a3f1b535fb72810b8a4669ad33ac0f240e98012 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.70.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.70.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/identifier.rst.txt
index ec5559b107463c8457e778c3540eaee2c4316f1a..8a8d0c1e64010f063e3e57f279ddd8eedad84839 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/70/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.finishers.70.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/editors/100.rst.txt
index dcf0076e67bd89266e7163452e9b52c61c0d7f0e..4f0cfe9a083a38c463c1dd6d3cc7fb8c2936bcf2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.80.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.80.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/editors/9999.rst.txt
index fc9141fc056588c7a6485486e5880ebcd627bdfc..1b0a9922338f00ef58cae28352d5b33ce83b9115 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.finishers.80.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Form.formEditor.propertyCollections.finishers.80.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/identifier.rst.txt
index 1212212622028cfce409d9094fc15b63daf6c132..7b26f072c41e37f7e47a8995177b05aab9d0368b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/formEditor/propertyCollections/finishers/80/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.finishers.80.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<finisherIdentifier>"<prototypes.\<prototypeidentifier>.finishersdefinition.\<finisheridentifier>>`
+      - :ref:`"\<finisherIdentifier>"<prototypes.prototypeIdentifier.finishersdefinition.finisheridentifier>`
 
 :aspect:`Description`
       Identifies the finisher which should be attached to the form definition. Must be equal to an existing ``<finisherIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/renderingOptions/translation/translationFiles.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/renderingOptions/translation/translationFiles.rst.txt
index 64ddeefb340a3e5b6dfbfa176ecc5f7bd71a9b0a..1dad0d3461632a8c70d8ff508ad0bb2da0dab5f5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/renderingOptions/translation/translationFiles.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Form/renderingOptions/translation/translationFiles.rst.txt
@@ -55,4 +55,4 @@ renderingOptions.translation.translationFiles
 
 :aspect:`Description`
       Filesystem path(s) to translation files which should be searched for form element property translations.
-      If ``translationFiles`` is undefined, - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.Form.renderingOptions.translation.translationFiles"<prototypes.\<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.translation.translationfiles>` will be used.
+      If ``translationFiles`` is undefined, - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.Form.renderingOptions.translation.translationFiles" <prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.translation.translationfiles>` will be used.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow.rst
index 76979f6c1dada8717cc151d416e15933be58bed4..3f55583198f3cf0ad716f2efd61481ec9e9c29f2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow.rst
@@ -1,76 +1,76 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.gridrow:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow:
 
 =========
 [GridRow]
 =========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.gridrow-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.implementationclassname:
 .. include:: GridRow/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.properties.containerclassattribute:
 .. include:: GridRow/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.properties.elementclassattribute:
 .. include:: GridRow/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.properties.elementerrorclassattribute:
 .. include:: GridRow/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.properties.gridcolumnclassautoconfiguration.gridsize:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.properties.gridcolumnclassautoconfiguration.gridsize:
 .. include:: GridRow/properties/gridColumnClassAutoConfiguration/gridSize.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.properties.gridcolumnclassautoconfiguration.viewports:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.properties.gridcolumnclassautoconfiguration.viewports:
 .. include:: GridRow/properties/gridColumnClassAutoConfiguration/viewPorts.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.properties.gridcolumnclassautoconfiguration.viewports.*.classpattern:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.properties.gridcolumnclassautoconfiguration.viewports.*.classpattern:
 .. include:: GridRow/properties/gridColumnClassAutoConfiguration/viewPorts/classPattern.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.renderingoptions._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.renderingoptions._iscompositeformelement:
 .. include:: GridRow/renderingOptions/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.renderingoptions._isgridrowformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.renderingoptions._isgridrowformelement:
 .. include:: GridRow/renderingOptions/_isGridRowFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor:
 .. include:: GridRow/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.editors.100:
 .. include:: GridRow/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.editors.200:
 .. include:: GridRow/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.editors.700:
 .. include:: GridRow/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.editors.9999:
 .. include:: GridRow/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.predefineddefaults:
 .. include:: GridRow/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor._iscompositeformelement:
 .. include:: GridRow/formEditor/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor._isgridrowformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor._isgridrowformelement:
 .. include:: GridRow/formEditor/_isGridRowFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.label:
 .. include:: GridRow/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.group:
 .. include:: GridRow/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.groupsorting:
 .. include:: GridRow/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.gridrow.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.gridrow.formeditor.iconidentifier:
 .. include:: GridRow/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/100.rst.txt
index 2d26c2ec20d1dbd52839bed9291fc052ad8f6a0b..099d85891f7bb80adbf87929f6eea95cb4e5c171 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.GridRow.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/200.rst.txt
index c921dbc8488e74ec0349658606e506d011c4957b..549181539901be2c22c061440e1be3286d609c96 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.GridRow.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/700.rst.txt
index b774e80a1ec27cdedaff11e765f79495ae8820e9..ef592ac80c4d77202a140a29b2de6e3eee23fc5e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.GridRow.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/9999.rst.txt
index 127c2498658df7b69bb2fe6af8641a0d73ad1dec..4b5b0aef2ca27c2a2bfac5ee81f45823dbc6bddc 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.GridRow.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/group.rst.txt
index 3dde2b4bc69802370319c709f9b1f41c2a50b10b..8e1d6412a9020566da2f0daad987ff231b1df8bb 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: container
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/iconIdentifier.rst.txt
index f6aeffd237450d49f19e5a22c91eef924a579b95..c7ebdf735ef103c8f8163d6bc4b1170abe323626 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/properties/gridColumnClassAutoConfiguration/viewPorts.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/properties/gridColumnClassAutoConfiguration/viewPorts.rst.txt
index e1cad5f8a53e57a8c24554b05e874c365d2c48a6..6d7b99c2da64a846bd49ff9783282ff0e05547b7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/properties/gridColumnClassAutoConfiguration/viewPorts.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/properties/gridColumnClassAutoConfiguration/viewPorts.rst.txt
@@ -43,7 +43,7 @@ properties.gridColumnClassAutoConfiguration.viewPorts
                    classPattern: 'col-lg-{@numbersOfColumnsToUse}'
 
 :aspect:`Related options`
-      - :ref:`"properties.gridColumnClassAutoConfiguration"<prototypes.\<prototypeIdentifier>.formelementsdefinition.\<formelementtypeidentifier>.properties.gridcolumnclassautoconfiguration>`
+      - :ref:`"properties.gridColumnClassAutoConfiguration"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.properties.gridcolumnclassautoconfiguration>`
 
 :aspect:`Description`
       Each configuration key within `properties.gridColumnClassAutoConfiguration.viewPorts` represents an viewport of the CSS grid system (bootstrap by default).
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/properties/gridColumnClassAutoConfiguration/viewPorts/classPattern.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/properties/gridColumnClassAutoConfiguration/viewPorts/classPattern.rst.txt
index 1c3946024d84fbc8e5af9f93d802119afcec3990..f16bf1e77885d30e1272354d41729cc6825dcd85 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/properties/gridColumnClassAutoConfiguration/viewPorts/classPattern.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/GridRow/properties/gridColumnClassAutoConfiguration/viewPorts/classPattern.rst.txt
@@ -43,7 +43,7 @@ properties.gridColumnClassAutoConfiguration.viewPorts.[*].classPattern
                    classPattern: 'col-lg-{@numbersOfColumnsToUse}'
 
 :aspect:`Related options`
-      - :ref:`"properties.gridColumnClassAutoConfiguration"<prototypes.\<prototypeIdentifier>.formelementsdefinition.\<formelementtypeidentifier>.properties.gridcolumnclassautoconfiguration>`
+      - :ref:`"properties.gridColumnClassAutoConfiguration"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.properties.gridcolumnclassautoconfiguration>`
 
 :aspect:`Description`
       Defines the CSS class pattern for the CSS grid system.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden.rst
index daadf898375809589eb88c5240c36f09b71c66d6..ffa10994b036e1812124debc46b30425beb5e466 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden.rst
@@ -1,59 +1,59 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.hidden:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden:
 
 ========
 [Hidden]
 ========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.hidden-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.implementationclassname:
 .. include:: Hidden/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.properties.containerclassattribute:
 .. include:: Hidden/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.properties.elementclassattribute:
 .. include:: Hidden/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.properties.elementerrorclassattribute:
 .. include:: Hidden/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor:
 .. include:: Hidden/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.editors.100:
 .. include:: Hidden/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.editors.200:
 .. include:: Hidden/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.editors.300:
 .. include:: Hidden/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.editors.700:
 .. include:: Hidden/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.editors.9999:
 .. include:: Hidden/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.predefineddefaults:
 .. include:: Hidden/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.label:
 .. include:: Hidden/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.group:
 .. include:: Hidden/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.groupsorting:
 .. include:: Hidden/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.hidden.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.hidden.formeditor.iconidentifier:
 .. include:: Hidden/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/100.rst.txt
index 53907c8722a7c91e11657c5bea8289fd88ea4b93..7db2fe590c6a00f48dd29bc237b9b933f836afff 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Hidden.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/200.rst.txt
index 5f0ba80ca3f5be79865ead9b0da943ed0bdaee09..266c1dc9a06ddfd92f470123986e90298ae361be 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Hidden.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/300.rst.txt
index 5e6113128826575b19a4d949283ece6a3252b24c..4e022c6bf7e8b05b59fc1cca45e2223eefe039d0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Hidden.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/700.rst.txt
index de6a544d7621f5429c6b716dddf234f242358a08..b686eaba118952a6c7ae8eb61c7f0e2d9aeb5cdd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Hidden.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/9999.rst.txt
index e80d4aafc41d4b3295dac60f5b6be42405605f57..84f87fe28801c73981856d4e06e53e7eec80b4b8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Hidden.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/group.rst.txt
index d746b422952c7fa7df31ccfbf91902d5fbf7f34f..64bd3b3f034c97a48f7b1f29c80ff956e5c5d0d2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: custom
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/iconIdentifier.rst.txt
index 0c9b6ca58ffd34f7e9c0a4ae21c3684055b85a6c..a0b5f55f38dbc462430cd9369576202cffcb0312 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Hidden/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Honeypot.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Honeypot.rst
index 36659de38c527dd4013bb6393531114beedb7ae0..465902f97531d8bc659414e2811152d2525045a5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Honeypot.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Honeypot.rst
@@ -1,31 +1,31 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.honeypot:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.honeypot:
 
 ==========
 [Honeypot]
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.honeypot-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.honeypot-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.honeypot.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.honeypot.implementationclassname:
 .. include:: Honeypot/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.honeypot.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.honeypot.properties.containerclassattribute:
 .. include:: Honeypot/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.honeypot.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.honeypot.properties.elementclassattribute:
 .. include:: Honeypot/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.honeypot.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.honeypot.properties.elementerrorclassattribute:
 .. include:: Honeypot/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.honeypot.properties.renderashiddenfield:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.honeypot.properties.renderashiddenfield:
 .. include:: Honeypot/properties/renderAsHiddenField.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.honeypot.properties.styleattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.honeypot.properties.styleattribute:
 .. include:: Honeypot/properties/styleAttribute.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload.rst
index 359ce343c80c4453890852cc4e4a82698b831885..b915df3e12856753df88a43437207b0fdd30ac0a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload.rst
@@ -1,106 +1,106 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.imageupload:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload:
 
 =============
 [ImageUpload]
 =============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.imageupload-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.implementationclassname:
 .. include:: ImageUpload/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.containerclassattribute:
 .. include:: ImageUpload/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.elementclassattribute:
 .. include:: ImageUpload/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.elementDescription:
 .. include:: ImageUpload/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.elementerrorclassattribute:
 .. include:: ImageUpload/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.savetofilemount:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.savetofilemount:
 .. include:: ImageUpload/properties/saveToFileMount.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.allowedmimetypes:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.allowedmimetypes:
 .. include:: ImageUpload/properties/allowedMimeTypes.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.imagelinkmaxwidth:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.imagelinkmaxwidth:
 .. include:: ImageUpload/properties/imageLinkMaxWidth.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.imagemaxwidth:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.imagemaxwidth:
 .. include:: ImageUpload/properties/imageMaxWidth.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.properties.imagemaxheight:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.properties.imagemaxheight:
 .. include:: ImageUpload/properties/imageMaxHeight.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor:
 .. include:: ImageUpload/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.100:
 .. include:: ImageUpload/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.200:
 .. include:: ImageUpload/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.230:
 .. include:: ImageUpload/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.300:
 .. include:: ImageUpload/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.400:
 .. include:: ImageUpload/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.700:
 .. include:: ImageUpload/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.800:
 .. include:: ImageUpload/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.900:
 .. include:: ImageUpload/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.editors.9999:
 .. include:: ImageUpload/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.predefineddefaults:
 .. include:: ImageUpload/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10:
 .. include:: ImageUpload/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.identifier:
 .. include:: ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.editors.100:
 .. include:: ImageUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.editors.200:
 .. include:: ImageUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.editors.300:
 .. include:: ImageUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: ImageUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.label:
 .. include:: ImageUpload/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.group:
 .. include:: ImageUpload/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.groupsorting:
 .. include:: ImageUpload/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.imageupload.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.imageupload.formeditor.iconidentifier:
 .. include:: ImageUpload/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/100.rst.txt
index 1ba4157ccd16438ec3f6ad933776f067dbea7ad3..255efdbec4c84b0e8c05756d523408f3586dfa7c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/200.rst.txt
index 04a56a18baab6994c8a26f25a3692d0c93f73da1..1e1887f71c7b67a8a435007c5535bb74b426552c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/300.rst.txt
index 9c82851adcd8e8d3718eca68a5b086bab2edc19c..32796a21ff217849071d4879cdfa2a652d392288 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/400.rst.txt
index e3bf44800a4a5917b8f7c9c5cc345ad617df592f..c6b05add574d9aa7225adb829854b9baa212e23f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[SingleSelectEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.singleselecteditor>`
+      array/ :ref:`[SingleSelectEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.singleselecteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/700.rst.txt
index 1fa6596c9579548cdb4cb064ebad0d11a48a6cd8..881efd613f7a2e412a01e0654a61b2b516b5ab1f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/800.rst.txt
index 1e4436a13177a4967f1b74e45b54abb5e4a1769d..a13ce5b485e1a0fb216abc7137fa7d24c474b7e4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/900.rst.txt
index f3e9ce9fece41b34fa818740d45da6ea4613cd84..e8f97b4b48bf2a3b9b837abc5c18997516a24e7e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/9999.rst.txt
index 9b55d6b78b8fb09a3a834ce814c5ce63d3c34437..822dc3e9fde07521b518f0d15bdc9f60cd232e84 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/group.rst.txt
index 7b1fe7ae5307cda691a5913d3e7a2ee180366e2f..ea8dd9c9918b417d04ffaad8b05a20208108069f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: custom
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/iconIdentifier.rst.txt
index 058882acfc435a9baadf17165105dd76bfca15e6..90c57ea9cbe357a9d3408f632dc87bda129ea8a2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index 15d3173be1ca37991d66a2a4a5f74d09ec66afe6..7bfb4331a73ddbae032537e65b1298cbef48d6ca 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt
index 31c1b996b8acfb41a6264fc90b559bd6d802270b..5fc9abd9770b4f33cfb503dbb6869ef1abb59c37 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt
index e31fd7d94e78646e6484f818ca58d3e675852c8e..1598ce866325ff74b572a6ac8f89f7a31c7746d7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index fdb6dcb5db21abfe688acbf8a553a9a76b446fbb..8670d6725ab8b61ac014e0afb59932aae5b2ba9c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.ImageUpload.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt
index a5682b63bb560fc0dbfeb1f9b8b2f50df3d34fb6..aef94fd3a76c61f64b4fed438138fc390d9c4aa7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/ImageUpload/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing `<validatorIdentifier>`.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox.rst
index dcd3f503200b9cd690ff54aab85d43ba50139e11..2bf46be6a84161c81fde866b46bfd6a6fbda0794 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox.rst
@@ -1,88 +1,88 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.multicheckbox:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox:
 
 ===============
 [MultiCheckbox]
 ===============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.multicheckbox-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.implementationclassname:
 .. include:: MultiCheckbox/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.properties.containerclassattribute:
 .. include:: MultiCheckbox/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.properties.elementclassattribute:
 .. include:: MultiCheckbox/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.properties.elementDescription:
 .. include:: MultiCheckbox/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.properties.elementerrorclassattribute:
 .. include:: MultiCheckbox/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor:
 .. include:: MultiCheckbox/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.editors.100:
 .. include:: MultiCheckbox/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.editors.200:
 .. include:: MultiCheckbox/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.editors.230:
 .. include:: MultiCheckbox/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.editors.300:
 .. include:: MultiCheckbox/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.editors.700:
 .. include:: MultiCheckbox/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.editors.800:
 .. include:: MultiCheckbox/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.editors.900:
 .. include:: MultiCheckbox/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.editors.9999:
 .. include:: MultiCheckbox/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.predefineddefaults:
 .. include:: MultiCheckbox/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10:
 .. include:: MultiCheckbox/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.identifier:
 .. include:: MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.editors.100:
 .. include:: MultiCheckbox/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.editors.200:
 .. include:: MultiCheckbox/formEditor/propertyCollections/validators/10/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.editors.300:
 .. include:: MultiCheckbox/formEditor/propertyCollections/validators/10/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: MultiCheckbox/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.label:
 .. include:: MultiCheckbox/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.group:
 .. include:: MultiCheckbox/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.groupsorting:
 .. include:: MultiCheckbox/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multicheckbox.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multicheckbox.formeditor.iconidentifier:
 .. include:: MultiCheckbox/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/100.rst.txt
index ff301f462d6ddbbe0e942ceb6dffe5e8ab607108..2ec405bf2c6b046ab9c2929c2ef8ea61c4a88c68 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/200.rst.txt
index 73ac513b3ff3813f59396980e84171152811dc6d..8349e51904f8313d193a79d819c607e8bf10a975 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/230.rst.txt
index ee4d42864d113587b873f749a3e33134d03e7c17..2e3985724ba959963eaa96a2182536e5efdfc78c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/300.rst.txt
index 3e1a1f965c7fd2072ed23860c19749a732b924cb..0084361b80b3ab234ecce53d36512c66c1e027ae 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/700.rst.txt
index e17bd34693d5b9dce18442ead3c1829af35c4877..33e2e610e5386046329338772affb99948c8cf83 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/800.rst.txt
index 3742c32a160a6092286b31449e7fa430d847db1a..e6df21121f29399b88c80ac3cb886dacdea49e11 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/900.rst.txt
index 6e1e1a7f3a4b5fd078c647d76d52d1f35c0aa912..27fb53292832bb27bceff7d251207d62456eb8a7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/9999.rst.txt
index ebc2c894ffeb14c8ee5a8e2172a5f47a4d5fe129..7a4f3c495c2a0123d222e4429dfd62df4b27a1d8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/group.rst.txt
index e473e264af6555ff7cfcc99d7976ca748aeaea5b..7a068eae368091191343767694d8f16a2a951c93 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: select
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/iconIdentifier.rst.txt
index 7d6fd82d471024045d22efde3766c2049c6c5017..ab92ee302bb980d49d76973fd5f45b937365c39c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index 2eb8b0a525143538d80216d0a0c2e8ebf9868329..0e08597db3fe3a101d928d2a73ab734ab4d36b3e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/200.rst.txt
index ea4f9ff8299a693239321dfb8167117163b57f71..b51708cc76788716cdc61560c3a3ca18db92c870 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/300.rst.txt
index 62fa51103ec0006f45e0268ee13a8194b2b7802f..9b3b972e1264253c7045d24509b2afb511f1fcbc 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index 9e6d97ea7eb527505fc2e982d6af0094a258d7d5..2bb1537a0205ffbd9c1c06467dc68e75891e627d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiCheckbox.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst.txt
index 50ea16469a1b3d612529dda018c658e468577ea4..30c7d4bc49146fc8372ee9e51a650637414e4a3a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiCheckbox/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect.rst
index 4945394aaaa4a68257a3ab009b73fbce50bc6ae6..ca0d49619b3fb7299aa629f7b44dd1c68f1dbe8a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect.rst
@@ -1,97 +1,97 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.multiselect:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect:
 
 =============
 [MultiSelect]
 =============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.multiselect-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.implementationclassname:
 .. include:: MultiSelect/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.properties.containerclassattribute:
 .. include:: MultiSelect/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.properties.elementclassattribute:
 .. include:: MultiSelect/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.properties.elementDescription:
 .. include:: MultiSelect/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.properties.elementerrorclassattribute:
 .. include:: MultiSelect/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.properties.prependOptionLabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.properties.prependOptionLabel:
 .. include:: MultiSelect/properties/prependOptionLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.properties.prependOptionValue:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.properties.prependOptionValue:
 .. include:: MultiSelect/properties/prependOptionValue.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor:
 .. include:: MultiSelect/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.100:
 .. include:: MultiSelect/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.200:
 .. include:: MultiSelect/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.230:
 .. include:: MultiSelect/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.250:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.250:
 .. include:: MultiSelect/formEditor/editors/250.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.300:
 .. include:: MultiSelect/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.700:
 .. include:: MultiSelect/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.800:
 .. include:: MultiSelect/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.900:
 .. include:: MultiSelect/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.editors.9999:
 .. include:: MultiSelect/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.predefineddefaults:
 .. include:: MultiSelect/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10:
 .. include:: MultiSelect/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.identifier:
 .. include:: MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.editors.100:
 .. include:: MultiSelect/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.editors.200:
 .. include:: MultiSelect/formEditor/propertyCollections/validators/10/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.editors.300:
 .. include:: MultiSelect/formEditor/propertyCollections/validators/10/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: MultiSelect/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.label:
 .. include:: MultiSelect/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.group:
 .. include:: MultiSelect/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.groupsorting:
 .. include:: MultiSelect/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.multiselect.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.multiselect.formeditor.iconidentifier:
 .. include:: MultiSelect/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/100.rst.txt
index e4ee904a4f532edf46f91fef48af6c8f61dd41d5..2034bbe90dffded780777da2e9d144ccdec7f77f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/200.rst.txt
index 221226a26d4308f552e091fdc535cfb9b8e81fb9..a77d795bdae13a23d98cf3f1d098d65f9ed2a9ec 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/230.rst.txt
index d672d0d172cc5b2bcda7728f1409bd75804bf42c..64fa7b2d292049994ffe06f665579f4e239b8ce6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/250.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/250.rst.txt
index 4fb54c44e58bc8de75afe219630851b6f5e9f8ed..78e6ef315ce83e7db800c015cdb86cea149fa53d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/250.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/250.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.250
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.250
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/300.rst.txt
index c6866ed6ea5c1c4e53b30055c392f8e6d93b5d3c..c282f6adcc0a8efaf98e288c93ba20979e444e4f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/700.rst.txt
index 46bd289297354e5a3397faf8b64292e88afb9be8..610352449e987d6b653b3f160e82c2599908634d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/800.rst.txt
index af7b5e6c1c561c522be324a69f0ad15939faee30..afb79e1e90b887acf87bc5ba2415dca4f54c75c6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/900.rst.txt
index 0eb588758a9761ce18ed6cdd0c5a56ef4fd8a96e..4261a3d7b37110ea70e3f0c1106351d79659de5d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/9999.rst.txt
index 236bda41d54e943ef2e6a441991f07e0b8ab7a90..e5bfe2116caa860d527fd5e1c087232ebb74c20d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/group.rst.txt
index 7da7f4552918650533340d9101d37f3b671348cc..bf29e08d6f5eae47974287d6be3de65148dc4fc3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: select
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/iconIdentifier.rst.txt
index fcc520826e586222d9cf995dd546148a4657481a..7001c63266b284b87eda4b997e772c83633b8775 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index bc6663e8190d95a02ec491c9d50557c1e74fde1c..43f9e8d070f7beef28c3c493310f37ba5c302575 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/200.rst.txt
index 66f77585065ed611b8368a85bc1918b19f281c0e..6c857094e8677f037f1e0aaa60d926cd28172cf1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/300.rst.txt
index 68d5fd31c11f34ed6e673a793fe11656e1c8894e..74662d38606f6cba3d3d91bec6376965a64ba869 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index a3a295a441abc3fb1761c33f7aea5238d047d7ea..2fd25a7362af47e3fcebef077e7f4f7015138dab 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.MultiSelect.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst.txt
index 00103fb8e54f046abdbce67d081c1697e0d31941..f274f9701c8fc6a29bb82c35e9c183730bc27e20 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/MultiSelect/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number.rst
index 18d52e3568c91da43d3bdda25d1ebad2499d1d21..a0f27fb3a945ce82d15d82d1b8cbbe855d2df5a0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number.rst
@@ -1,106 +1,106 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.number:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number:
 
 ========
 [Number]
 ========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.number-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.implementationclassname:
 .. include:: Number/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.properties.containerclassattribute:
 .. include:: Number/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.properties.elementclassattribute:
 .. include:: Number/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.properties.elementDescription:
 .. include:: Number/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.properties.elementerrorclassattribute:
 .. include:: Number/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.validators:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.validators:
 .. include:: Number/validators.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor:
 .. include:: Number/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.100:
 .. include:: Number/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.200:
 .. include:: Number/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.230:
 .. include:: Number/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.400:
 .. include:: Number/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.500:
 .. include:: Number/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.550:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.550:
 .. include:: Number/formEditor/editors/550.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.700:
 .. include:: Number/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.800:
 .. include:: Number/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.900:
 .. include:: Number/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.editors.9999:
 .. include:: Number/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.predefineddefaults:
 .. include:: Number/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.60:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.60:
 .. include:: Number/formEditor/propertyCollections/validators/60.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.60.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.60.identifier:
 .. include:: Number/formEditor/propertyCollections/validators/60/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.60.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.60.editors.100:
 .. include:: Number/formEditor/propertyCollections/validators/60/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.70:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.70:
 .. include:: Number/formEditor/propertyCollections/validators/70.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.70.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.70.identifier:
 .. include:: Number/formEditor/propertyCollections/validators/70/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.70.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.70.editors.100:
 .. include:: Number/formEditor/propertyCollections/validators/70/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.70.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.70.editors.200:
 .. include:: Number/formEditor/propertyCollections/validators/70/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.70.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.70.editors.300:
 .. include:: Number/formEditor/propertyCollections/validators/70/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.propertycollections.validators.70.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.propertycollections.validators.70.editors.9999:
 .. include:: Number/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.label:
 .. include:: Number/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.group:
 .. include:: Number/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.groupsorting:
 .. include:: Number/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.number.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.number.formeditor.iconidentifier:
 .. include:: Number/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/100.rst.txt
index 0a9df4ed4acc737b2abf0c57d668d2b34e0d7545..4b993b420bfe1a17622965017cd59650bcd92a79 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/200.rst.txt
index b9972493594a4dad25fecb3f5f423b0e4d6e7c6e..a4955cbbe6886e7de3f197b08d6003f160b2dc9d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/230.rst.txt
index a81ec1cf606de1c833a9cfc245e63201f013c26c..51e107307d47e903f540379c26f6de8ed7e87357 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/400.rst.txt
index 72ef3c90457c225c1f8544396df9a76e61687209..226a8fca7240f8b5614c2a302e2f5b06f5140389 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/500.rst.txt
index 0c4c71f485044f23f790c06570c1f499e4ce7dd5..6da2e6d605b7f064208e0a6bc711a7a241b9b557 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/550.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/550.rst.txt
index 67bb64094aae8c73a398fe4bdd2a94c5c5501ad5..b696d05fd32b6e062e7f46622dfb79cdd6339344 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/550.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/550.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.550
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.550
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/700.rst.txt
index 0ecb61dae7916ea53b55f450d39ea1550efc686a..c752b12eb9ae9ae379ae9dacc9bc097eca9dc508 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/800.rst.txt
index 8401aeb70c9da7285ef1647583eefcb0e52f9b1b..624b6d0d31ca58cd3cd21a85e875535bca5ca21a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/900.rst.txt
index 4efd8f68a5e7dc4e4014985d10c6c4da5e3ce337..88b2bdb9fb0411b6f319e6a8d859442580317fce 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/9999.rst.txt
index 161b3374fa1083a3f1de9d5f8dd6e53146fb6d04..50324d6a1f6e5ae94d8d196ce4baadd6bf95975d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/iconIdentifier.rst.txt
index b0fe26aed94ea1d7e3d317c1d3cd79f8fde22880..87d5c3a73f0de4025572ba01d292d908f028b599 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/editors/100.rst.txt
index 6ad61a096a5ce08a50b607d7e885876eb6059134..8036662eca1366bca56a7e7eb69d640234fcacc6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.propertyCollections.validators.60.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/identifier.rst.txt
index ce9af88df542006073d3ec9910ab1739a7d6d5b1..d79817078e81a679d386b38633923d6c44c9f1ac 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/60/identifier.rst.txt
@@ -33,7 +33,7 @@ formEditor.propertyCollections.validators.60.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/100.rst.txt
index 65e3da21c651a5b6fdbaf5eed3f39626f2b778fd..69b7303a9bea3afab899c98ac9a4b6c4dde2e129 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.propertyCollections.validators.70.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/200.rst.txt
index ba2323ac42c076f01300d7806a7583de3ad79310..1b7ddbb9962c87813c734b76fe8a6a3a5292bd38 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.propertyCollections.validators.70.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/300.rst.txt
index f71f78b714062acf92a0c9847eb2228e90a03e9f..392ef9d6f724c09f441f5818ef3aa855bf921641 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.propertyCollections.validators.70.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
index 85c6333f090fbe9b5c528b2b7f20ff92ff9d122a..866cc9c73eb197c4eecc6ba73f4b5552b26fa143 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Number.formEditor.propertyCollections.validators.70.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/identifier.rst.txt
index d01400610f63e7b2b5c4ac1758af4ca801e327bb..e5ba789156729fa0144bfda702ca428e66536780 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Number/formEditor/propertyCollections/validators/70/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.70.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page.rst
index d481350363c36cdc6526fe369e3e298fa2980604..baa927573dbd19da695eb382f44e3d9ba83b295c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page.rst
@@ -1,67 +1,67 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.page:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page:
 
 ======
 [Page]
 ======
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.page-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.implementationclassname:
 .. include:: Page/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.renderingoptions._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.renderingoptions._iscompositeformelement:
 .. include:: Page/renderingOptions/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.renderingoptions._istoplevelformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.renderingoptions._istoplevelformelement:
 .. include:: Page/renderingOptions/_isTopLevelFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.renderingoptions.nextbuttonlabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.renderingoptions.nextbuttonlabel:
 .. include:: Page/renderingOptions/nextButtonLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.renderingoptions.previousbuttonlabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.renderingoptions.previousbuttonlabel:
 .. include:: Page/renderingOptions/previousButtonLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor:
 .. include:: Page/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.editors.100:
 .. include:: Page/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.editors.200:
 .. include:: Page/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.editors.300:
 .. include:: Page/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.editors.400:
 .. include:: Page/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.editors.9999:
 .. include:: Page/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.predefineddefaults:
 .. include:: Page/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor._iscompositeformelement:
 .. include:: Page/formEditor/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor._istoplevelformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor._istoplevelformelement:
 .. include:: Page/formEditor/_isTopLevelFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.label:
 .. include:: Page/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.group:
 .. include:: Page/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.groupsorting:
 .. include:: Page/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.page.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.page.formeditor.iconidentifier:
 .. include:: Page/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/100.rst.txt
index 3a213767384f36ad97c05aa6c353a0fb6170f4d2..4529bdd1e7688bf868d3d87b303c80fb44e49985 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Page.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/200.rst.txt
index f995b3c203caf305da224eaa4a19e87b8294696f..5cec5558d50efafe315b4995543bfe8892574997 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Page.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/300.rst.txt
index 6e78e57975184754042dcd698a527b16078486f9..f8a87b0fa58a4184304e14f29d611d45fe74283d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Page.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/400.rst.txt
index 7bd40c078ebd0a2da2b7824a5d754804b0c5d358..bdd035095792870e27b3565248d79a48db2df413 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Page.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/9999.rst.txt
index 9c18992919fd6ddca99e6308a502cc3769154757..a6eb98258c60c5f079299e27071e9c7b98919ccd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Page.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/group.rst.txt
index fe7179dd0a039a30ec889d2e979050467ed1cfc3..62b6b203551cd49a06e14ba03548283e401e1a2b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: page
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/iconIdentifier.rst.txt
index 2bced398718a6d387ad90a0b169d9695289e977e..af57d342d62ad83d8f356a1c2dd9733bcd1e335c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Page/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password.rst
index 3ef97a0350406837eb65c1ac628b4591758d287e..69002bd50a60a517204e1b110c1ddeff3f70c1fe 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password.rst
@@ -1,184 +1,184 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.password:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password:
 
 ==========
 [Password]
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.password-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.implementationclassname:
 .. include:: Password/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.properties.containerclassattribute:
 .. include:: Password/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.properties.elementclassattribute:
 .. include:: Password/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.properties.elementDescription:
 .. include:: Password/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.properties.elementerrorclassattribute:
 .. include:: Password/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor:
 .. include:: Password/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.100:
 .. include:: Password/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.200:
 .. include:: Password/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.230:
 .. include:: Password/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.400:
 .. include:: Password/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.500:
 .. include:: Password/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.700:
 .. include:: Password/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.800:
 .. include:: Password/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.900:
 .. include:: Password/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.editors.9999:
 .. include:: Password/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.predefineddefaults:
 .. include:: Password/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.10:
 .. include:: Password/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.10.identifier:
 .. include:: Password/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.10.editors.100:
 .. include:: Password/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: Password/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.20:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.20:
 .. include:: Password/formEditor/propertyCollections/validators/20.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.20.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.20.identifier:
 .. include:: Password/formEditor/propertyCollections/validators/20/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.20.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.20.editors.100:
 .. include:: Password/formEditor/propertyCollections/validators/20/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.20.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.20.editors.9999:
 .. include:: Password/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.30:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.30:
 .. include:: Password/formEditor/propertyCollections/validators/30.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.30.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.30.identifier:
 .. include:: Password/formEditor/propertyCollections/validators/30/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.30.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.30.editors.100:
 .. include:: Password/formEditor/propertyCollections/validators/30/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.30.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.30.editors.200:
 .. include:: Password/formEditor/propertyCollections/validators/30/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.30.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.30.editors.300:
 .. include:: Password/formEditor/propertyCollections/validators/30/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.30.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.30.editors.9999:
 .. include:: Password/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.40:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.40:
 .. include:: Password/formEditor/propertyCollections/validators/40.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.40.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.40.identifier:
 .. include:: Password/formEditor/propertyCollections/validators/40/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.40.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.40.editors.100:
 .. include:: Password/formEditor/propertyCollections/validators/40/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.40.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.40.editors.9999:
 .. include:: Password/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.50:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.50:
 .. include:: Password/formEditor/propertyCollections/validators/50.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.50.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.50.identifier:
 .. include:: Password/formEditor/propertyCollections/validators/50/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.50.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.50.editors.100:
 .. include:: Password/formEditor/propertyCollections/validators/50/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.50.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.50.editors.9999:
 .. include:: Password/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.60:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.60:
 .. include:: Password/formEditor/propertyCollections/validators/60.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.60.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.60.identifier:
 .. include:: Password/formEditor/propertyCollections/validators/60/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.60.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.60.editors.100:
 .. include:: Password/formEditor/propertyCollections/validators/60/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.60.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.60.editors.9999:
 .. include:: Password/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.70:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.70:
 .. include:: Password/formEditor/propertyCollections/validators/70.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.70.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.70.identifier:
 .. include:: Password/formEditor/propertyCollections/validators/70/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.70.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.70.editors.100:
 .. include:: Password/formEditor/propertyCollections/validators/70/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.70.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.70.editors.200:
 .. include:: Password/formEditor/propertyCollections/validators/70/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.70.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.70.editors.300:
 .. include:: Password/formEditor/propertyCollections/validators/70/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.70.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.70.editors.9999:
 .. include:: Password/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.80:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.80:
 .. include:: Password/formEditor/propertyCollections/validators/80.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.80.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.80.identifier:
 .. include:: Password/formEditor/propertyCollections/validators/80/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.80.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.80.editors.100:
 .. include:: Password/formEditor/propertyCollections/validators/80/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.80.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.80.editors.200:
 .. include:: Password/formEditor/propertyCollections/validators/80/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.propertycollections.validators.80.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.propertycollections.validators.80.editors.9999:
 .. include:: Password/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.label:
 .. include:: Password/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.group:
 .. include:: Password/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.groupsorting:
 .. include:: Password/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.password.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.password.formeditor.iconidentifier:
 .. include:: Password/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/100.rst.txt
index ba612ab26d903c9224cd7794f7152dd44b356a7f..74d75b49fa4425a60d9de41effab8bb0d2018ac0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/200.rst.txt
index 2379cc4e05b60e76dfceb8538417ce458adef699..c103bbf3237d0657637747dcd89ac06ca776d3c7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/230.rst.txt
index 8d2b7d13aa93b73a504be2a6e566bf27818283ae..d34b46a80a7660a07b447ed48f3f71fcad528655 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/400.rst.txt
index b26e003e6fd0f7e5752c6982c2951bd8c14c0273..cb3b050ef7f1daf8f25912c8d8c2f92fc45817c5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/500.rst.txt
index db625670bce324a773fd6220ddb96e9dd5debe17..99a8b5f06d69ab1c70b862f0f859652e22306322 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/700.rst.txt
index 27f1ef8b9df7b38482c02e9c4bc611719653e9fe..e9074ef8e2c13771708dd163ee4a15bcda56ea0a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/800.rst.txt
index 8c6eaa65a65138a28e288b8bbba919042b3b2473..2d8df5faf9cbf6dcfa9876b84907b7546c2f5845 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/900.rst.txt
index 901c2fdcf9c17c05f9480e67ae088aba1d61bf53..f2d43925d096c86bb7b417c94c8a114fd5ee21d8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/9999.rst.txt
index 49cf65f7bee377eb08b32caf4f3376bf044b5e4b..89da0f940b5a66ab9036584eb09039513a7da3d1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/group.rst.txt
index 66c9b23409e1a5bbb5683c195481a38e7afd6cc1..a288563d4acd023fbdc8f0ca0427b76b32a31ca0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: input
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/iconIdentifier.rst.txt
index c52c6b0161ed7606a7cc6e319a2091e02efb01c7..90ef86a75164a20e55f01f0fd6ac19eede22910f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index 180b6d7cb53f89ae741ea7a9d0fd73c6b76e90ce..4ef27121369e869d254ff14ee45714cdeb24f9bf 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index 72a852aae85fb111e00d831c61dc76cc24df4ebd..df490c5938eb82a1e8dfe1b88343a3080b06957a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/identifier.rst.txt
index 5aeb40bb3fa6524e38085c50884dd213354e5792..32b0dc0d22bb38328eb483252925ee8bdeeec975 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/editors/100.rst.txt
index 189f749a60df49705d6f64b266c474a74f2d0457..01ecd9b1249bc7c1d3aa56a0b9575c84b2d16b31 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.20.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
index d53b407b35e123c88b543b518af94ea8cb8bcbb3..4192a789b7b48d0bf13dd32088a503635b55c456 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.20.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/identifier.rst.txt
index 86bdfcb94d48f44631270e5a1c2aef221f793a4b..b8880a5c1095c417d81fff28d9f6e723d932c1c8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/20/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.20.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/100.rst.txt
index c23f8614309df28e7da3422c12be061dc1123a52..533346759de8ddb2dfedb8684c2f8fa05f84b08b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.30.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/200.rst.txt
index 0092eb248854ac329454bdbe631a10af8e439fff..8370c716db4099633d70850cad917cb63021b2bc 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.30.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/300.rst.txt
index 12837903d1c2584eeaaaacfbddab9b3f31edaca0..2c2aac4e2e14d667f2965f6176e71222f8fadf3b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.30.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
index a7b9554190ce6e46677ee1411e6620a3138cb8f4..89bb2bf188ff259d34fc7780d3b77974db67e7be 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.30.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/identifier.rst.txt
index 560b4c9f7256498d4c76e589997a51dc6514baa9..9ef46591be4492badd53a72a11ac166569c47c03 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/30/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.30.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/editors/100.rst.txt
index 149d3ab245e0ed553095c894d1b46110907cfc3a..6f91a1214414688733fc30ebc5a05db1650e67ef 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.40.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
index ffe495d27b756abe0171caed85d80bec17e412e8..c145c16438c896e65b3b77fdcd3d5c497b8365c9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.40.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/identifier.rst.txt
index 5026d9607d2427334d6e39f0d41d2dd2f84a3ff5..e4e3470cbcbf4475723fb07daf935374b332022e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/40/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.40.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/editors/100.rst.txt
index 74d8e456e5ad51aafeaef5cb18f68ad39299889a..311431c4789f70190a73c33c988d584fd451b1c6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.50.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
index 2356bf1a9ef42803ab80d60d990b5b4ff49a4e3d..e799b6cb93d7d9147ef23e26fb45318ac5a6e6fd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.50.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/identifier.rst.txt
index 247b6bedabeba43a4c0083e8b1b2ce4db8eb5264..b6ce551ab2fd545fff22f3a6239e51eaca5cc3b1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/50/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.50.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/editors/100.rst.txt
index 9ae1d58090c7317b570ed12dd54771016adb6f37..4444a6c80a40d3634adc03db9d3a9cce45ec5375 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.60.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
index 8869684489a56281ce6a31b54f935e72981b641a..21530c0822c8a1348563acbead10e82655f676f9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.60.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/identifier.rst.txt
index 7b8aac0c353ffcddadcc26de3544fff82abc2bc7..8886ce932d4e06e4e6dc8bd25443175ffcbfa750 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/60/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.60.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/100.rst.txt
index 85e56754a40564bc680dc8a281236a48c8a1ec6a..a8361d857c3da0421cc063adcb06e7eb191cc958 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.70.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/200.rst.txt
index 621d3c99b6ff49d42a6f9671119c5b3547e5f6d7..1746fad63f687719ce6785ffeb9b4f0332c6f7be 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.70.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/300.rst.txt
index 97a3043f07e95e6be1b9a7135aafcc5838baa833..e8d7ea0f5805b79b350b4ec9802b6e2d5addc737 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.70.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
index 735adae6fad49af8314b638d7b5b7fc00566907d..d924daae7516a6b3e9ce9e2c3c825ff56f2469f0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.70.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/identifier.rst.txt
index 169d687b6e83780832a8264be817102d38ba9ad5..d6646ec3b2f3c6e1111f5fa3f537862c6bdffacd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/70/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.70.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/100.rst.txt
index 9578caf3a55b551dfdb67023692c0cc6d1d2509c..ef3f2c044748bf2057f00e4962dbb5ae5c568b81 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.80.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/200.rst.txt
index 4cc0fbfd8301966fea72fac0961cf1d4897e46ef..a855df5a56bd3bc75e347d920c1a4972fc7a25de 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.80.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
index 08b489f6ff4bb59ae17c6ed6ae74e1b79d19b53e..002de6bdd24a67dcd7f931e5320ac424ae24ed48 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Password.formEditor.propertyCollections.validators.80.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/identifier.rst.txt
index 62e5d6f50b0e89c1f164f6a1d68c3c2d2ece9e8a..be9fccf7327e12243c8da144e2e64707ed5ee1da 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Password/formEditor/propertyCollections/validators/80/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.80.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton.rst
index 1030ad23cae1cc5d4b57e7874515d6ea68131d65..36c54060ee84e8e434ea11ff1d6f584237640b63 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton.rst
@@ -1,67 +1,67 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.radiobutton:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton:
 
 =============
 [RadioButton]
 =============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.radiobutton-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.implementationclassname:
 .. include:: RadioButton/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.properties.containerclassattribute:
 .. include:: RadioButton/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.properties.elementclassattribute:
 .. include:: RadioButton/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.properties.elementDescription:
 .. include:: RadioButton/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.properties.elementerrorclassattribute:
 .. include:: RadioButton/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor:
 .. include:: RadioButton/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.editors.100:
 .. include:: RadioButton/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.editors.200:
 .. include:: RadioButton/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.editors.230:
 .. include:: RadioButton/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.editors.300:
 .. include:: RadioButton/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.editors.700:
 .. include:: RadioButton/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.editors.800:
 .. include:: RadioButton/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.editors.9999:
 .. include:: RadioButton/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.predefineddefaults:
 .. include:: RadioButton/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.label:
 .. include:: RadioButton/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.group:
 .. include:: RadioButton/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.groupsorting:
 .. include:: RadioButton/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.radiobutton.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.radiobutton.formeditor.iconidentifier:
 .. include:: RadioButton/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/100.rst.txt
index 95305636d0553cbc58da629fa40d1fd1927deb42..eb188f5195eae63463a11c7e65a5347213483a4e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.RadioButton.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/200.rst.txt
index af9c166b8c21defc9f4d6fbeb00c20305125d3a0..e808e57db855d100e6b216ccecef9391d67dad25 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.RadioButton.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/230.rst.txt
index 9cffc3bb5d10b2414b4c69dc3998538054b1f71e..e95a98b73eebe91e2fa8739ba40a19ca4d45a07e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.RadioButton.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/300.rst.txt
index 2a2212159a420ca5bd3ceeb4b7f3e115a91657ca..7fa2749b6d9a9302d7bdfa3b928dfe43cda36e66 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.RadioButton.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/700.rst.txt
index 2f57a9e265fd03ee48a993963f43f98a7c0ce5f4..28b81cc54bd17ec3d3f0c334b56e0789dceddce9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.RadioButton.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/800.rst.txt
index e6025d4d546570fa292a3fd3af85e72adb985e96..9bb00cd43db8a8d1b129c08089f87cd059501f46 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.RadioButton.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/9999.rst.txt
index 5d4fe921761a7dccbd388a5fa228d1edeee346d3..1b2ce61a0ba4193bca06688e556616e8d86f7643 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.RadioButton.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/group.rst.txt
index 7000b328c3a06fd12705d208b45d151e966ce2e8..8d798ef3477ad520e1ef2ff1807379ede83a14da 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: select
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/iconIdentifier.rst.txt
index 82d115ba43597405daa39988042274b4d0e8284d..6e67ba34c63aefb68207ff8bf8d6d82270b20630 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/RadioButton/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect.rst
index 8b97e2679958beac747c4c2a42b3c3673c5f2b37..0bdf400aa7f4b0d2f5c798f50ebf8481133db040 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect.rst
@@ -1,76 +1,76 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.singleselect:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect:
 
 ==============
 [SingleSelect]
 ==============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.singleselect-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.implementationclassname:
 .. include:: SingleSelect/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.properties.containerclassattribute:
 .. include:: SingleSelect/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.properties.elementclassattribute:
 .. include:: SingleSelect/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.properties.elementDescription:
 .. include:: SingleSelect/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.properties.elementerrorclassattribute:
 .. include:: SingleSelect/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.properties.prependOptionLabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.properties.prependOptionLabel:
 .. include:: SingleSelect/properties/prependOptionLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.properties.prependOptionValue:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.properties.prependOptionValue:
 .. include:: SingleSelect/properties/prependOptionValue.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor:
 .. include:: SingleSelect/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.editors.100:
 .. include:: SingleSelect/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.editors.200:
 .. include:: SingleSelect/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.editors.230:
 .. include:: SingleSelect/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.editors.250:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.editors.250:
 .. include:: SingleSelect/formEditor/editors/250.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.editors.300:
 .. include:: SingleSelect/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.editors.700:
 .. include:: SingleSelect/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.editors.800:
 .. include:: SingleSelect/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.editors.9999:
 .. include:: SingleSelect/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.predefineddefaults:
 .. include:: SingleSelect/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.label:
 .. include:: SingleSelect/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.group:
 .. include:: SingleSelect/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.groupsorting:
 .. include:: SingleSelect/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.singleselect.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.singleselect.formeditor.iconidentifier:
 .. include:: SingleSelect/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/100.rst.txt
index 61ede7c1d0868f2e3dcf8fb57694084462968c26..a9076929f3aca060d4be1c8af313767bb609eceb 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/200.rst.txt
index 3c862bbd3796c443277fa8140609f3c48547c382..66dcc4c4977911790720cdfe71774ec89b43eb71 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/230.rst.txt
index 695e3da9304d5508f03a41653568110884a149ca..049afb2b3183b9a405831f9259993f791f788340 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/250.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/250.rst.txt
index 5272f8ea783210360d8ba796d7bb092641a14f5f..194e1644ba4f6b28cc486028aaa7c2b0ce068846 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/250.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/250.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.250
       prototypes.<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.editors.250
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/300.rst.txt
index cc120d7a11fc824872b7a5eee482cfb28b97b4b0..69185f96f5d435b79536c941617f736530e98116 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[PropertyGridEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.propertygrideditor>`
+      array/ :ref:`[PropertyGridEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.propertygrideditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/700.rst.txt
index 5f1bcffcc474c8b6e90ae54b71ae38c59ef1f534..ab86ab243ec1241603d10ce9d658aa7d7ca20045 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/800.rst.txt
index 43f3a13d434781a6290cdafba419d5564b245090..6849fabea53d02dc9746210e1904833631b99e32 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/9999.rst.txt
index 2618f1435a3b29b3a350c0d1bf9e613f33d506aa..03ba3b928f4ceff98dcc8e8bb2218a294d6c3e8e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.SingleSelect.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/group.rst.txt
index b5e74bea33d3e3d73ba3713d5b4ac4d0d990c233..fd8e389f9cfdf044519357d234656a89c2633d2b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: select
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/iconIdentifier.rst.txt
index 41d9292ab1a7f5f72df227b5768c2f8a26403c96..7fb81da53f0ee9cf3478b403ea7d93653a47c21a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SingleSelect/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText.rst
index 97ca53a8cf853280fed3baf453fccdac928b5ef0..ae52098e19f70293fa22d0796b9a6b62ad582d35 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText.rst
@@ -1,49 +1,49 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.statictext:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext:
 
 ============
 [StaticText]
 ============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.statictext-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.implementationclassname:
 .. include:: StaticText/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.properties.text:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.properties.text:
 .. include:: StaticText/properties/text.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor:
 .. include:: StaticText/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.editors.100:
 .. include:: StaticText/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.editors.200:
 .. include:: StaticText/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.editors.300:
 .. include:: StaticText/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.editors.9999:
 .. include:: StaticText/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.predefineddefaults:
 .. include:: StaticText/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.label:
 .. include:: StaticText/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.group:
 .. include:: StaticText/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.groupsorting:
 .. include:: StaticText/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.statictext.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.statictext.formeditor.iconidentifier:
 .. include:: StaticText/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/100.rst.txt
index dcd5fda98a5e5a6f1fb30029b9aa641d92665223..1e7d374472a4fc0bcfcca87ec17fec89f564fa39 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.StaticText.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/200.rst.txt
index f8b288efdbf85b2dc85a2be4d37cf12fbe5023e4..735aee431d15990058c895221159997ad8c1ada2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.StaticText.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/300.rst.txt
index b18538ea041cd40a12659f7cf8cb33d8eb9b7283..fdb88b8e8e07efb64c8fe1832d5133c236b8f45d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.StaticText.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextareaEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.textareaeditor>`
+      array/ :ref:`[TextareaEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.textareaeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/9999.rst.txt
index 1959130bb0e2428e972829f60f76a8381cb3a958..4ef12459ffa974bf85a4648ec2fcf5906b6d52b3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.StaticText.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/group.rst.txt
index 3be6ad4e3b85d04ae8d939518b7f8b5441acaf6e..4dd901ef4fa81ace4000b78b29e1577adf1c2ae4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: custom
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/iconIdentifier.rst.txt
index 8a2cadb5879f463c73c8c91299be8243144dcff3..f5502c1f8f408a34b155900080abe620588b1f7e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/StaticText/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage.rst
index 2c20ffc50b499c0cd60c8530b90fd72c0d3ab919..c8e6fda6b877501d8b2b08b667806a72a77230de 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage.rst
@@ -1,67 +1,67 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.summarysummarypage:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarysummarypage:
 
 =============
 [SummaryPage]
 =============
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.summarysummarypage-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarysummarypage-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.implementationclassname:
 .. include:: SummaryPage/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.renderingoptions._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.renderingoptions._iscompositeformelement:
 .. include:: SummaryPage/renderingOptions/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.renderingoptions._istoplevelformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.renderingoptions._istoplevelformelement:
 .. include:: SummaryPage/renderingOptions/_isTopLevelFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.renderingoptions.nextbuttonlabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.renderingoptions.nextbuttonlabel:
 .. include:: SummaryPage/renderingOptions/nextButtonLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.renderingoptions.previousbuttonlabel:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.renderingoptions.previousbuttonlabel:
 .. include:: SummaryPage/renderingOptions/previousButtonLabel.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor:
 .. include:: SummaryPage/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.editors.100:
 .. include:: SummaryPage/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.editors.200:
 .. include:: SummaryPage/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.editors.300:
 .. include:: SummaryPage/formEditor/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.editors.400:
 .. include:: SummaryPage/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.editors.9999:
 .. include:: SummaryPage/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.predefineddefaults:
 .. include:: SummaryPage/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor._iscompositeformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor._iscompositeformelement:
 .. include:: SummaryPage/formEditor/_isCompositeFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor._istoplevelformelement:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor._istoplevelformelement:
 .. include:: SummaryPage/formEditor/_isTopLevelFormElement.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.label:
 .. include:: SummaryPage/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.group:
 .. include:: SummaryPage/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.groupsorting:
 .. include:: SummaryPage/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.summarypage.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.summarypage.formeditor.iconidentifier:
 .. include:: SummaryPage/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/100.rst.txt
index 9bc19294c2a8f692daa479c92105cb414eb3f88c..56423471d98419720da96d57ac80fb852d57dba4 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.SummaryPage.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/200.rst.txt
index 401ab09f4c09c07d7007e28ec49c3bed9ccd28a2..e913f04d5c5de2dd8286cf978b524b239eaf9db0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.SummaryPage.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/300.rst.txt
index db0872095fa91f4c7d7424132cacca18c565a60d..0233413d84c070233215f10ec219e38f6cb7b259 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.SummaryPage.formEditor.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/400.rst.txt
index 6bf750c725b55c6241d77c7cedf4624c5523f330..e0ba2af015c4b0852c66cdf7402c1f12995c5613 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.SummaryPage.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/9999.rst.txt
index e59a54c6001cb49b4c9f4fcfc1cb87bf4097621d..5ee1891b7c33478f1963e54dbf64774b8004b913 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.SummaryPage.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/group.rst.txt
index e0a6586d7f85da21170da12aaa9c4404940e7483..667cbda7fc000eaed1b6ce94050dc75ee3280761 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: page
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/iconIdentifier.rst.txt
index 0765d07a3e780f3147a994d4287f9302b646d332..5a7f00f70a9c01166f789e9f697c9ab2fc52ea88 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/SummaryPage/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone.rst
index 0afbdc0b952d2e577fbfbc5e3f8c828809be9306..e42af7633fe1387011c4e5fb334e1022aee98e6b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone.rst
@@ -1,88 +1,88 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.telephone:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone:
 
 ===========
 [Telephone]
 ===========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.telephone-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.implementationclassname:
 .. include:: Telephone/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.properties.containerclassattribute:
 .. include:: Telephone/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.properties.elementclassattribute:
 .. include:: Telephone/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.properties.elementDescription:
 .. include:: Telephone/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.properties.elementerrorclassattribute:
 .. include:: Telephone/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.validators:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.validators:
 .. include:: Telephone/validators.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor:
 .. include:: Telephone/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.100:
 .. include:: Telephone/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.200:
 .. include:: Telephone/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.230:
 .. include:: Telephone/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.400:
 .. include:: Telephone/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.500:
 .. include:: Telephone/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.700:
 .. include:: Telephone/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.800:
 .. include:: Telephone/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.900:
 .. include:: Telephone/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.editors.9999:
 .. include:: Telephone/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.predefineddefaults:
 .. include:: Telephone/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.propertycollections.validators.80:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.propertycollections.validators.80:
 .. include:: Telephone/formEditor/propertyCollections/validators/80.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.propertycollections.validators.80.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.propertycollections.validators.80.identifier:
 .. include:: Telephone/formEditor/propertyCollections/validators/80/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.propertycollections.validators.80.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.propertycollections.validators.80.editors.100:
 .. include:: Telephone/formEditor/propertyCollections/validators/80/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.propertycollections.validators.80.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.propertycollections.validators.80.editors.200:
 .. include:: Telephone/formEditor/propertyCollections/validators/80/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.label:
 .. include:: Telephone/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.group:
 .. include:: Telephone/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.groupsorting:
 .. include:: Telephone/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.telephone.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.telephone.formeditor.iconidentifier:
 .. include:: Telephone/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/100.rst.txt
index 7c49b09b33bd9ca0ad4ac0e83c570ce4470e2f87..8e584b36c547114299bb1f751ed2b0cc2cefc329 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/200.rst.txt
index 3ed3c6c8f9c61808117c15ae4f11d318ea6d3694..41dd184343428e5c69a00cda2a1aa7db1c8804e0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/230.rst.txt
index 312209fdb3e31977cb1625b8bdca178e2f065e18..947b2a2c957d5acd62f121ead5e941f7989693b6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/400.rst.txt
index db262b0351609e6cc1d2211bbdf809d9db9adf70..eb42a13f173e0b70141529dd5c1d7a2863b1043e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/500.rst.txt
index 2e3df78e07db5ac59e9a850462a4b68dd02e60bc..57ed0666a4079d7c5b62b58a42729eebb7665bf9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/700.rst.txt
index 7c9a14f101412d51e73c671afd8d6ac95953575c..bfc486f280946d8611e770b7172eb3859f50f5c2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/800.rst.txt
index 64dffc3f643c8a27468cccebfdfaddb890706e85..bc22c8090386de7472cdccb976423a57fc4f1463 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/900.rst.txt
index 0ceff2d94f6c6b135f89edc57e411d5c43977e3f..bb9318974286abcdf091f9d2a0edb852498f0ef7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/9999.rst.txt
index e8501fca1baacae3925c50ad3172393d5a1ecc42..676247e5194f161a0c9a9024a3ec11aafcab550f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/iconIdentifier.rst.txt
index 3e624fe9ffbed69c7c8f6644c838348729309b2b..15b8a90ad9b0cb30bc41e8737f7c0eb759fc108c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/editors/100.rst.txt
index 063c9bd0ed45aaac6cdd0fdc0c8176f97143de15..e7bdf3c90adfd83f97f9f8bd077fb4e258dddb55 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.80.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/editors/200.rst.txt
index 68736f2b7088aee646f1421e270dcb1573b9a9ee..60fbb8cef87e0b3333e19b11b2db0b46affa6958 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Telephone.formEditor.propertyCollections.validators.80.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/identifier.rst.txt
index 40c6da212be758e53148334f8db9947f2b5c5741..158458ea568a2103741c092bfa982ddab57f957e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Telephone/formEditor/propertyCollections/validators/80/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.80.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text.rst
index c81fd432ead77e7ca2b8ba807458d66f081a89c2..32f4bc70378292c018a1421c95c4cf895b4fde9f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text.rst
@@ -1,184 +1,184 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.text:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text:
 
 ======
 [Text]
 ======
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.text-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.implementationclassname:
 .. include:: Text/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.properties.containerclassattribute:
 .. include:: Text/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.properties.elementclassattribute:
 .. include:: Text/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.properties.elementDescription:
 .. include:: Text/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.properties.elementerrorclassattribute:
 .. include:: Text/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor:
 .. include:: Text/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.100:
 .. include:: Text/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.200:
 .. include:: Text/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.230:
 .. include:: Text/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.400:
 .. include:: Text/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.500:
 .. include:: Text/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.700:
 .. include:: Text/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.800:
 .. include:: Text/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.900:
 .. include:: Text/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.editors.9999:
 .. include:: Text/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.predefineddefaults:
 .. include:: Text/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.10:
 .. include:: Text/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.10.identifier:
 .. include:: Text/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.10.editors.100:
 .. include:: Text/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: Text/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.20:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.20:
 .. include:: Text/formEditor/propertyCollections/validators/20.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.20.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.20.identifier:
 .. include:: Text/formEditor/propertyCollections/validators/20/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.20.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.20.editors.100:
 .. include:: Text/formEditor/propertyCollections/validators/20/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.20.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.20.editors.9999:
 .. include:: Text/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.30:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.30:
 .. include:: Text/formEditor/propertyCollections/validators/30.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.30.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.30.identifier:
 .. include:: Text/formEditor/propertyCollections/validators/30/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.30.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.30.editors.100:
 .. include:: Text/formEditor/propertyCollections/validators/30/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.30.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.30.editors.200:
 .. include:: Text/formEditor/propertyCollections/validators/30/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.30.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.30.editors.300:
 .. include:: Text/formEditor/propertyCollections/validators/30/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.30.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.30.editors.9999:
 .. include:: Text/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.40:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.40:
 .. include:: Text/formEditor/propertyCollections/validators/40.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.40.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.40.identifier:
 .. include:: Text/formEditor/propertyCollections/validators/40/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.40.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.40.editors.100:
 .. include:: Text/formEditor/propertyCollections/validators/40/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.40.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.40.editors.9999:
 .. include:: Text/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.50:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.50:
 .. include:: Text/formEditor/propertyCollections/validators/50.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.50.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.50.identifier:
 .. include:: Text/formEditor/propertyCollections/validators/50/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.50.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.50.editors.100:
 .. include:: Text/formEditor/propertyCollections/validators/50/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.50.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.50.editors.9999:
 .. include:: Text/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.60:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.60:
 .. include:: Text/formEditor/propertyCollections/validators/60.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.60.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.60.identifier:
 .. include:: Text/formEditor/propertyCollections/validators/60/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.60.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.60.editors.100:
 .. include:: Text/formEditor/propertyCollections/validators/60/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.60.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.60.editors.9999:
 .. include:: Text/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.70:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.70:
 .. include:: Text/formEditor/propertyCollections/validators/70.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.70.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.70.identifier:
 .. include:: Text/formEditor/propertyCollections/validators/70/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.70.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.70.editors.100:
 .. include:: Text/formEditor/propertyCollections/validators/70/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.70.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.70.editors.200:
 .. include:: Text/formEditor/propertyCollections/validators/70/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.70.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.70.editors.300:
 .. include:: Text/formEditor/propertyCollections/validators/70/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.70.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.70.editors.9999:
 .. include:: Text/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.80:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.80:
 .. include:: Text/formEditor/propertyCollections/validators/80.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.80.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.80.identifier:
 .. include:: Text/formEditor/propertyCollections/validators/80/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.80.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.80.editors.100:
 .. include:: Text/formEditor/propertyCollections/validators/80/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.80.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.80.editors.200:
 .. include:: Text/formEditor/propertyCollections/validators/80/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.propertycollections.validators.80.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.propertycollections.validators.80.editors.9999:
 .. include:: Text/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.label:
 .. include:: Text/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.group:
 .. include:: Text/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.groupsorting:
 .. include:: Text/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.text.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.text.formeditor.iconidentifier:
 .. include:: Text/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/100.rst.txt
index 8417fa707cfe204fcf46cfecfde47031e7ea8d49..36c96f55308d030e217fd7fd00f229f50c341e6b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/200.rst.txt
index 12d53f3502e09996f112abbadb9c2f8c9d8085b4..b3a24a5c2a4a5d8f54a7c67942f64df14a0cba1c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/230.rst.txt
index 64ff4b3a22a464fbd0041bafaddf4353f9c82d28..9caea2bd58dce8282316f323266a768da1b6b7e2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/400.rst.txt
index 3866a211695cfb6bead5632f3dc4e4b2bb01b87c..82f1123bebc618f94db95851d681f91b9d7be726 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/500.rst.txt
index 8541e095992438150cc2bb203f6406e96cc2b251..3818c3ec2cb6bb4b83c15f6a5304c79f272a23dc 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/700.rst.txt
index 520f3e569f0d114554f1ba7797c8f2024e44ebdb..2f6e611f050417d6801d8edf0250c678a9d2f487 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/800.rst.txt
index 5e5ed41f2622b1960f6e60f0bfb14ea5fa2b9bdd..94a8d3897f2d0ca739ee7c3854ed8809ce44cad3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/900.rst.txt
index 5d1a1c0535bfb652247958363259fcd416985b63..56c82ddc685ffbf3ac3186b4424352f972a38e03 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/9999.rst.txt
index 5c9fd623cfa41a8278ec9fbdaadf766011bc13a0..f835d041ac807b1dc8c2e7e0e4fd67d243ffe185 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/group.rst.txt
index 11643002c69a27181220c8aa4fd728dc6dedbfd2..a088b7bea85438fc2e37fd90f8f9d3bd2cf34a25 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: input
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/iconIdentifier.rst.txt
index 2bf66e673baf0c0593773998750acc4c464ecf31..fd98e59926ba630acd84d53099022113917af558 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index 7f77bff4c0ca93da36fb52a3667a820d2b43b100..6b8eae0655685cf11a0e8166577ad8d2d10693f7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index 72efb81dc764e5b46176f6f14142643435cec1c7..16b70521b9853bd926bc785af16dbffc37206c05 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/identifier.rst.txt
index f2b62206c2cac9144ed71c0330b09e76523dbe28..034cfdcea28e3ca8301faf476eacf5aa11f36405 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/editors/100.rst.txt
index bbb93e30f7a0b8b1eceedf1e2cf41385e4ee8648..d967d1e005e5eb207308eb9d29b9741a81be909e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.20.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
index 59ca8e1d37b5210bb115ff2fed7329fc57d533c3..f255ddd1318ce51448ae88ca6c14af37c9283b76 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.20.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/identifier.rst.txt
index 8b8a40769b60658d0f401a905af4cfcb735fbf45..2ce70e403cf01e1b4f72361017f9d311d09361b5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/20/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.20.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/100.rst.txt
index c5480ae397a9fc2b0da7a5768b3cdbcd0b4bd724..9e36552050377777587332626e222294726a8dd9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.30.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/200.rst.txt
index 85d5070eddf7a01e55597f4818c7bcb9bf7ff87c..b0dfc06afa1b232abe2ec485d467998a7971c834 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.30.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/300.rst.txt
index 4ad94ee146f96fcf5522bfc19b057e15490748d4..cf32b81851ed5ad7ea84b75845a512240cbba725 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.30.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
index 208ca942ac1e2a78cb50fd2394ca6e03febdb618..8b330c754e22f8fd8e61924a4b91031087946a8a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.30.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/identifier.rst.txt
index 317fd7c87bbd161d5daba02d2b314f06ae79528d..dbc6d76af372eed0dc99d4d7d690069d736ec566 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/30/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.30.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/editors/100.rst.txt
index f05d0e817a72ad29adae45a66a66bf05c0668c69..637f895dc9298bd283f4fa919640de0f8dc326b3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.40.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
index dd916ef1d4304aed5185131e9f2b6d1bb9484d81..d4dc9a1af71dcf53c2fb250b751e22e5c9191400 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.40.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/identifier.rst.txt
index e37230623d6e0a6007d95b099690a073ee3c6d98..f4a1c045b9572c3429d2c85e914c745d981b2506 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/40/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.40.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/editors/100.rst.txt
index 84a6a8276b24712ac612c130073f13a0dcfe8c8f..e2f5dee0c501f8b50e6365bf6921d9de553f6ee2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.50.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
index 760fd6d837b4f696337046b2b1425a6524d33a3f..e6935a8f14d038f6a690ec9f2bbd6f3a235d313d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.50.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/identifier.rst.txt
index 27d19ac44cf8a862fff57f3ae291bcded8e2b8c2..fc846b28fd01b07644ef668008249ba80ee7c319 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/50/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.50.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/editors/100.rst.txt
index c2a2c6e77e54848569b497d3125ae62b37bb9fa6..010c71af15673cd046e39ca7389f0d69ac781151 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.60.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
index baac7b016ca3f3375998d598f11fe50649518f3c..7d99e0d50af89c0b5f31e7b5994c21a739d0b7ef 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.60.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/identifier.rst.txt
index 437dd2fd2b080f54549648b6ee14e27a6b160bed..044a5c0f2cbda109eb5c6d86a49d46406ba2b8ab 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/60/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.60.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/100.rst.txt
index 359e67d3fc384331ca9db88f1bcece69b414d777..caf42289f9977250e0e99c4c132617aa77b95686 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.70.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/200.rst.txt
index bf03646c10b25db8acfc93cfd78885d19af00b14..362a38104f128eaa600df6dbf05bbf5545030a7e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.70.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/300.rst.txt
index 862b3a1ebf099f4d2579061c278451436f5cc205..f235705f0ef1bcbdd30d5a8cac59f422c5fcc70c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.70.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
index e3dba1da7b36a4564aafdd104507772c541ef5ba..a6bbc629ea5bdf4914e9af08fd217b2e41612a58 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.70.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/identifier.rst.txt
index 37828dcfbd522a32097c483d4a9dcdf1b6c88146..33da6a9edc9e00db2b7eb32b88dd03f4c0543c77 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/70/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.70.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/100.rst.txt
index 063c9bd0ed45aaac6cdd0fdc0c8176f97143de15..e7bdf3c90adfd83f97f9f8bd077fb4e258dddb55 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.80.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/200.rst.txt
index 5dc85df8fb023e23a0c42dc85545cb6ee61294d0..6a085ccf8028ee7049540b399a0aa1fc734848fd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.80.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
index 6d6374f22f7f73ad33e7764b38e4b80e40976c4f..c4377e335bcea1a677948f8f7b83296d10e373c6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.80.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/identifier.rst.txt
index 0a6042f50ac64cad611a2ffc1f149e596df60327..46ecb230eac9ee6c96f453eb28f3566e5bc55cda 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Text/formEditor/propertyCollections/validators/80/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.80.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea.rst
index c50bff5edd890612c4c9a7f673e81a51df12e2e6..73a078ad33e58d40648c13aa798600102f8c9884 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea.rst
@@ -1,184 +1,184 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.textareaarea:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textareaarea:
 
 ==========
 [Textarea]
 ==========
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.textareaarea-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textareaarea-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.implementationclassname:
 .. include:: Textarea/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.properties.containerclassattribute:
 .. include:: Textarea/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.properties.elementclassattribute:
 .. include:: Textarea/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.properties.elementDescription:
 .. include:: Textarea/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.properties.elementerrorclassattribute:
 .. include:: Textarea/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor:
 .. include:: Textarea/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.100:
 .. include:: Textarea/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.200:
 .. include:: Textarea/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.230:
 .. include:: Textarea/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.400:
 .. include:: Textarea/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.500:
 .. include:: Textarea/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.700:
 .. include:: Textarea/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.800:
 .. include:: Textarea/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.900:
 .. include:: Textarea/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.editors.9999:
 .. include:: Textarea/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.predefineddefaults:
 .. include:: Textarea/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.10:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.10:
 .. include:: Textarea/formEditor/propertyCollections/validators/10.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.10.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.10.identifier:
 .. include:: Textarea/formEditor/propertyCollections/validators/10/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.10.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.10.editors.100:
 .. include:: Textarea/formEditor/propertyCollections/validators/10/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.10.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.10.editors.9999:
 .. include:: Textarea/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.20:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.20:
 .. include:: Textarea/formEditor/propertyCollections/validators/20.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.20.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.20.identifier:
 .. include:: Textarea/formEditor/propertyCollections/validators/20/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.20.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.20.editors.100:
 .. include:: Textarea/formEditor/propertyCollections/validators/20/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.20.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.20.editors.9999:
 .. include:: Textarea/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.30:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.30:
 .. include:: Textarea/formEditor/propertyCollections/validators/30.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.identifier:
 .. include:: Textarea/formEditor/propertyCollections/validators/30/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.editors.100:
 .. include:: Textarea/formEditor/propertyCollections/validators/30/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.editors.200:
 .. include:: Textarea/formEditor/propertyCollections/validators/30/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.editors.300:
 .. include:: Textarea/formEditor/propertyCollections/validators/30/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.30.editors.9999:
 .. include:: Textarea/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.40:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.40:
 .. include:: Textarea/formEditor/propertyCollections/validators/40.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.40.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.40.identifier:
 .. include:: Textarea/formEditor/propertyCollections/validators/40/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.40.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.40.editors.100:
 .. include:: Textarea/formEditor/propertyCollections/validators/40/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.40.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.40.editors.9999:
 .. include:: Textarea/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.50:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.50:
 .. include:: Textarea/formEditor/propertyCollections/validators/50.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.50.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.50.identifier:
 .. include:: Textarea/formEditor/propertyCollections/validators/50/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.50.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.50.editors.100:
 .. include:: Textarea/formEditor/propertyCollections/validators/50/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.50.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.50.editors.9999:
 .. include:: Textarea/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.60:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.60:
 .. include:: Textarea/formEditor/propertyCollections/validators/60.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.60.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.60.identifier:
 .. include:: Textarea/formEditor/propertyCollections/validators/60/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.60.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.60.editors.100:
 .. include:: Textarea/formEditor/propertyCollections/validators/60/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.60.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.60.editors.9999:
 .. include:: Textarea/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.70:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.70:
 .. include:: Textarea/formEditor/propertyCollections/validators/70.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.identifier:
 .. include:: Textarea/formEditor/propertyCollections/validators/70/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.editors.100:
 .. include:: Textarea/formEditor/propertyCollections/validators/70/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.editors.200:
 .. include:: Textarea/formEditor/propertyCollections/validators/70/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.editors.300:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.editors.300:
 .. include:: Textarea/formEditor/propertyCollections/validators/70/editors/300.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.70.editors.9999:
 .. include:: Textarea/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.80:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.80:
 .. include:: Textarea/formEditor/propertyCollections/validators/80.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.80.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.80.identifier:
 .. include:: Textarea/formEditor/propertyCollections/validators/80/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.80.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.80.editors.100:
 .. include:: Textarea/formEditor/propertyCollections/validators/80/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.80.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.80.editors.200:
 .. include:: Textarea/formEditor/propertyCollections/validators/80/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.propertycollections.validators.80.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.propertycollections.validators.80.editors.9999:
 .. include:: Textarea/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.label:
 .. include:: Textarea/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.group:
 .. include:: Textarea/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.groupsorting:
 .. include:: Textarea/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.textarea.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.textarea.formeditor.iconidentifier:
 .. include:: Textarea/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/100.rst.txt
index 8a13e4fd89ddb10327843d8ea4d23e022cebbe96..ff8f7687d6992fb2da7e045ef324858cab264a9b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/200.rst.txt
index 7db0565383f1c065384db43477ccf847393aa7a8..91ac17cc05b1670798eabccc74335eff8e2720dd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/230.rst.txt
index d7389e0036922f26a2d4374ed4e969b616c35f09..95b058409d660318c70e0102c230ad7d127447de 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/400.rst.txt
index 21f92cc3932e6ee258b1fc9c8ff4d8f52ef75dfc..bdc3c0cf939e658566a58f6502262927f8419450 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/500.rst.txt
index a8ee582f6587196c9285f67ad30a089921fec6dd..580d79506b83577c3f554dc2f3d99fc47f6b5268 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/700.rst.txt
index 7c75794d736952f5962baec52ba438775222027d..f74062e311ee96ff10cdfd430c09e7689edc8751 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/800.rst.txt
index 05b8d862eb0abdd2fa88efe81b73b3086bedc8d5..66a6531e6bf6d019f39f8d0696c447262e6c1a69 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/900.rst.txt
index 110283b3688203e6490e24174c1fe564801ba44b..0c9fc4b314ad62cd0003a71944baf5eff0c897f8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/9999.rst.txt
index 81892ebce76d6a0e6ae4eb1b568a1b388d831f9c..5b101b4b165222b24a734907103491784385503c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/group.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/group.rst.txt
index 0c5c61b4975784bbc0da8e814a0e142c66aa6339..15057d33624e31c9c7cdf1ec7f1b4e22162f171e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/group.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/group.rst.txt
@@ -24,7 +24,7 @@ formEditor.group
              group: input
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete element configuration <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete element configuration <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier-concreteconfigurations>`)
 
 :aspect:`Description`
       Define within which group within the ``form editor`` "new Element" modal the form element should be shown.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/iconIdentifier.rst.txt
index 185cc7e2adea34c37358ff78118974bf485b6544..ff596524a21da589a6255666ac1c87180cf4cdab 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/editors/100.rst.txt
index 5b6cf90a0d924ccaedadc73313ba36334c75a21b..eecdae1d401d5bb2a9c88e64c28bda9c8603f4e8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.10.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
index dcf88cc15309adfad384414491cd10662ddc978d..346079644c67392de7c7266e4dbb13551cf18398 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.10.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.10.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/identifier.rst.txt
index d4d1d8b697fe8768dae5fdd5d8f2a44cdaba5d53..4041dbb548d45699e76f8c7f1372b329ce655741 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/10/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.10.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/editors/100.rst.txt
index 58d7c887aed9cd9b1e0a0a6f8886ff6fde9c0510..5748148eb202253587fe947c1f6aadefaf19e36a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.20.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
index f32e976d10f5abb5cefc8ed745f26ebfbaab8baf..ba29173a4827f9954be916ce10254f5001c24fe0 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.20.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.20.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/identifier.rst.txt
index 4381397e96d43bd113b26f13f4cd6f82941de5d3..240f236bb76c2704568463eba1259a32bd641a73 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/20/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.20.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/100.rst.txt
index 9715f35b61f382b67948289d49db6d254665c496..cd9aa07522d5516a0ec66c786f01ad681d718484 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.30.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/200.rst.txt
index a4effe0c5906f2127ca0aa5df6716a74a33300a7..a11610551ab154cf5dd587a544a967032bb6e812 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.30.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/300.rst.txt
index 414d520bdda1e126819e07d29229242eb285a458..93be83c85a8e4a6d1536d97c66eca0e783d54c4f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.30.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
index 2fa1961386277925de2ec366b1517a36726505eb..75d0606a47e4a64bb0eb4b59251ab23c29fa5189 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.30.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.30.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/identifier.rst.txt
index 43b36e50d785396798dd8e1ae7baac59becc3dda..5864358008f032bad5b3b266d9b5357ceaea438b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/30/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.30.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/editors/100.rst.txt
index 9d3fabd55dfb09d1dc62d1be32309b98c4d05dd1..80e1d36bc0f1e4ab651da50cdc86f3ef5cf6371d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.40.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
index 568832f23657b4756470da1d845791f32a832a29..c5ea81e965f3efbdbaf8f0fec020e79b215282e1 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.40.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.40.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/identifier.rst.txt
index 6a4277955e4d42307e4b2377c56cec85ad1562f4..dab4c24ff9a2f49a9116afdb550b65082238e4d8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/40/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.40.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/editors/100.rst.txt
index 0eb8e2e8ecd245283a15a87368067602475aa699..7ffd2425758d97bdc23cbf966315ee82af06db6c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.50.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
index 7f082671d701b96bb8e03188d6690335b9d95895..71596be02cd870fcfe65e950ef0580c4ff944490 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.50.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.50.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/identifier.rst.txt
index 6eaa9649111a7c4d82b370363d7e0f981e3e5a32..5787275821269394b5ee6c72828b6fe28527f68d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/50/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.50.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/editors/100.rst.txt
index 30d368518524fa0e572521be8752eb55cfe1309b..cfa7a441a4e450f72c73151d171ebe77bce8908e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.60.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
index 3c7494498b5aec5036016fbe3fcab200dacefdc5..a7978d42730407a5b0b865d3905f193015a7165a 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.60.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.60.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/identifier.rst.txt
index c40f3beac8658c4725fa7df9f5d07cdbf6fb6e19..04bf871fbfe586a4bc76a3a18d5f06a82b4da101 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/60/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.60.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/100.rst.txt
index 0d81493405ea7b0f915f9779d8161fa2573a95db..db0bd3f5385abbb02b06fa22f1f1aadf68f99261 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.70.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/200.rst.txt
index b22041ddb56c0c2b42cffa8f473caba0f129f2b8..9e1b29be00ceff47a67db15514245169ef24a06e 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.70.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/300.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/300.rst.txt
index e5b5eb2ee3d977c8a9f6f66ad52d8e3b7a71cc85..57ac0da4dc0e50a07345e904f9603fcfd98928d6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/300.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/300.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.300
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.70.editors.300
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
index 8e25f5f17d7591f35fd36a43e548d6421d8aca77..2c9aa8ed307d4c6792528b98f5d289b895242f24 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.70.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.70.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/identifier.rst.txt
index a61a9a5b17c0dc4eb2275584b3c77054f9603a3b..46ca2432951af4af49a1db947a4e10e5a3018e47 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/70/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.70.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/100.rst.txt
index 06a67cd3dadc956f06bc13df82aec091aad8bb96..ed83564c47119fc55f51b4899bc391ab59f1465d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.80.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/200.rst.txt
index 56dcb7fe5ff5de7fe51013edab85a53de886d95b..e4ef706624c3821f34be3331685b057d3275b4e8 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.80.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
index 587afbfb8df2f910b1901bf3d18da385f841e7f8..5f7220f551fc3644776edf099a881b624ed2edd7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Textarea.formEditor.propertyCollections.validators.80.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/identifier.rst.txt
index 05724a6d2621a39eadcad153d8cc00ea2f2cec30..2dac627bd58fbc9ec9c58353e6c2c1eedaa0c5f6 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Textarea/formEditor/propertyCollections/validators/80/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.80.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url.rst b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url.rst
index 0c5f821d478a8ad9a5007f708f2c9ef7132d8b66..16c823b707d3fd5c678e436525c371f08d3f11b5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url.rst
@@ -1,88 +1,88 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.url:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url:
 
 =====
 [Url]
 =====
 
-.. _prototypes.<prototypeidentifier>.formelementsdefinition.url-properties:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.implementationclassname:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.implementationclassname:
 .. include:: Url/implementationClassName.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.properties.containerclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.properties.containerclassattribute:
 .. include:: Url/properties/containerClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.properties.elementclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.properties.elementclassattribute:
 .. include:: Url/properties/elementClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.properties.elementDescription:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.properties.elementDescription:
 .. include:: Url/properties/elementDescription.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.properties.elementerrorclassattribute:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.properties.elementerrorclassattribute:
 .. include:: Url/properties/elementErrorClassAttribute.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.validators:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.validators:
 .. include:: Url/validators.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor:
 .. include:: Url/formEditor.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.100:
 .. include:: Url/formEditor/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.200:
 .. include:: Url/formEditor/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.230:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.230:
 .. include:: Url/formEditor/editors/230.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.400:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.400:
 .. include:: Url/formEditor/editors/400.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.500:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.500:
 .. include:: Url/formEditor/editors/500.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.700:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.700:
 .. include:: Url/formEditor/editors/700.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.800:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.800:
 .. include:: Url/formEditor/editors/800.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.900:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.900:
 .. include:: Url/formEditor/editors/900.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.editors.9999:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.editors.9999:
 .. include:: Url/formEditor/editors/9999.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.predefineddefaults:
 .. include:: Url/formEditor/predefinedDefaults.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.propertycollections.validators.80:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.propertycollections.validators.80:
 .. include:: Url/formEditor/propertyCollections/validators/80.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.propertycollections.validators.80.identifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.propertycollections.validators.80.identifier:
 .. include:: Url/formEditor/propertyCollections/validators/80/identifier.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.propertycollections.validators.80.editors.100:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.propertycollections.validators.80.editors.100:
 .. include:: Url/formEditor/propertyCollections/validators/80/editors/100.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.propertycollections.validators.80.editors.200:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.propertycollections.validators.80.editors.200:
 .. include:: Url/formEditor/propertyCollections/validators/80/editors/200.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.label:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.label:
 .. include:: Url/formEditor/label.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.group:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.group:
 .. include:: Url/formEditor/group.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.groupsorting:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.groupsorting:
 .. include:: Url/formEditor/groupSorting.rst.txt
 
-.. _prototypes.<prototypeIdentifier>.formelementsdefinition.url.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.formelementsdefinition.url.formeditor.iconidentifier:
 .. include:: Url/formEditor/iconIdentifier.rst.txt
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/100.rst.txt
index cb33dd2d55cca75f559bb9f3332cd8caf1630318..92a8ad8e63ed3ec91897d9f3cc8f8cc41a15d62b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[FormElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`
+      array/ :ref:`[FormElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/200.rst.txt
index d87e4ea58e7cf797740c34df13770f5f88a64751..3b15876017aebca4c690e52dc8ddc7b24c61d02b 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/230.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/230.rst.txt
index 51b454f5e8aef4dc9978d400d314326f442dec1b..f1e621257bcf07c6fcd9de83773afd5de761c8b5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/230.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/230.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.230
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.230
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Frontend/ Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/400.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/400.rst.txt
index fa5cd513bc2db84c7d4048037fd2290a176e4d36..39f4978dc2a1aa58079c35e16f3f1a5c612ec5c2 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/400.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/400.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.400
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.400
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/500.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/500.rst.txt
index b65e5a5ec1c99ffb7f4826272c3aa69f3844b916..b1a96d661fe76dc5e786c3b7db3650aec288811f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/500.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/500.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.500
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.500
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/700.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/700.rst.txt
index bdef69485df14cb8009a3a570723551a142a4707..df80f5850bc88ae057edee36fabd0f62a46f2034 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/700.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/700.rst.txt
@@ -6,7 +6,7 @@ formEditor.editors.700
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.700
 
 :aspect:`Data type`
-      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
+      array/ :ref:`[GridColumnViewPortConfigurationEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.gridcolumnviewportconfigurationeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/800.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/800.rst.txt
index b27e6647f5132338637a3229c455f6b500b5fe0d..bec34b22735a6a7f4bb4b8d12a2c50c3b2fb0d5c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/800.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/800.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.800
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.800
 
 :aspect:`Data type`
-      array/ :ref:`[RequiredValidatorEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.requiredvalidatoreditor>`
+      array/ :ref:`[RequiredValidatorEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.requiredvalidatoreditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/900.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/900.rst.txt
index 17542ba3264396477d872741d67730e2592910bb..74c171cc08320ec6335989ddc0a8d7b31ab4ed4f 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/900.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/900.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.900
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.900
 
 :aspect:`Data type`
-      array/ :ref:`[ValidatorsEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatorseditor>`
+      array/ :ref:`[ValidatorsEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatorseditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/9999.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/9999.rst.txt
index dd5cc55ce84cd3ee3cbdf5442125f2408ff7af05..73bbf06eb047ee6195acf140217b7235ca47ed47 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/9999.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/editors/9999.rst.txt
@@ -7,7 +7,7 @@ formEditor.editors.9999
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.editors.9999
 
 :aspect:`Data type`
-      array/ :ref:`[RemoveElementEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.removeelementeditor>`
+      array/ :ref:`[RemoveElementEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.removeelementeditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/iconIdentifier.rst.txt
index ad7210df22a64c10d03b8f6673938c5212f09854..549a84b6aa898d0b9ab063e863664c3c3db7f49d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/iconIdentifier.rst.txt
@@ -30,7 +30,7 @@ formEditor.iconIdentifier
       An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
       This icon will be shown within
 
-      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.formelementheadereditor>`.
+      - :ref:`"Inspector [FormElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.formelementheadereditor>`.
       - :ref:`"Abstract view formelement templates"<apireference-formeditor-stage-commonabstractformelementtemplates>`.
       - ``Tree`` component.
       - "new element" Modal
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/editors/100.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/editors/100.rst.txt
index 063c9bd0ed45aaac6cdd0fdc0c8176f97143de15..e7bdf3c90adfd83f97f9f8bd077fb4e258dddb55 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/editors/100.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/editors/100.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.100
       prototypes.<prototypeIdentifier>.formElementsDefinition.Text.formEditor.propertyCollections.validators.80.editors.100
 
 :aspect:`Data type`
-      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>`
+      array/ :ref:`[CollectionElementHeaderEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/editors/200.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/editors/200.rst.txt
index 371daa90a57bee5c12341a66265260a5020651cc..98c467f8c1394f05b09833eb1b98b9a0957b30f7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/editors/200.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/editors/200.rst.txt
@@ -7,7 +7,7 @@ formEditor.propertyCollections.validators.80.editors.200
       prototypes.<prototypeIdentifier>.formElementsDefinition.Url.formEditor.propertyCollections.validators.80.editors.200
 
 :aspect:`Data type`
-      array/ :ref:`[TextEditor] <prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.texteditor>`
+      array/ :ref:`[TextEditor] <prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.texteditor>`
 
 :aspect:`Needed by`
       Backend (form editor)
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/identifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/identifier.rst.txt
index b3f15f28851f1638194fb836a45aaa478e951e1e..b7780cfe19a51ba3f6a61c27d214025552e54cca 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/identifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formElements/formElementTypes/Url/formEditor/propertyCollections/validators/80/identifier.rst.txt
@@ -28,7 +28,7 @@ formEditor.propertyCollections.validators.80.identifier
 
 :aspect:`Good to know`
       - :ref:`"Inspector"<concepts-formeditor-inspector>`
-      - :ref:`"\<validatorIdentifier>"<prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>>`
+      - :ref:`"\<validatorIdentifier>"<prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier>`
 
 :aspect:`Description`
       Identifies the validator which should be attached to the form element. Must be equal to an existing ``<validatorIdentifier>``.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/formEngine/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/formEngine/Index.rst
index 6dcdda653d165a690254c608751368a271bf7bda..d82c8e566effbc1532317a99e36d5f202dab1fea 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/formEngine/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/formEngine/Index.rst
@@ -1,19 +1,19 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.formengine:
+.. _prototypes.prototypeIdentifier.formengine:
 
 ============
 [formEngine]
 ============
 
 
-.. _prototypes.<prototypeidentifier>.formengine-properties:
+.. _prototypes.prototypeIdentifier.formengine-properties:
 
 Properties
 ==========
 
-.. _prototypes.<prototypeidentifier>.formengine.translationfiles:
+.. _prototypes.prototypeIdentifier.formengine.translationfiles:
 
 translationFiles
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/Index.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/Index.rst
index 112bc7e70c513c9d5997ecba038e8f128d770681..6d93bb2e8ed2db4628dacc44e4468ad37bb481ab 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/Index.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/Index.rst
@@ -1,20 +1,20 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition:
+.. _prototypes.prototypeIdentifier.validatorsdefinition:
 
 ======================
 [validatorsDefinition]
 ======================
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.*:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.*:
 
 [validatorsDefinition]
 ----------------------
@@ -47,7 +47,7 @@ Properties
       Array which defines the available serverside validators. Every key within this array is called the ``<validatoridentifier>``.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.<validatoridentifier>:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier:
 
 <validatorIdentifier>
 ---------------------
@@ -96,9 +96,9 @@ Properties
                [...]
 
 :aspect:`Related options`
-      - :ref:`"prototypes.\<prototypeIdentifier>.formElementsDefinition.\<formElementTypeIdentifier>.formEditor.propertyCollections.validators.[*].identifier"<prototypes.\<prototypeIdentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.propertycollections.validators.*.identifier>`
-      - :ref:`"[ValidatorsEditor] selectOptions.[*].value"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.selectoptions.*.value-validatorseditor>`
-      - :ref:`"[RequiredValidatorEditor] validatorIdentifier"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.validatoridentifier-requiredvalidatoreditor>`
+      - :ref:`"prototypes.prototypeIdentifier.formElementsDefinition.formelementtypeidentifier.formEditor.propertyCollections.validators.[*].identifier"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.propertycollections.validators.*.identifier>`
+      - :ref:`"[ValidatorsEditor] selectOptions.[*].value"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.selectoptions.*.value-validatorseditor>`
+      - :ref:`"[RequiredValidatorEditor] validatorIdentifier"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.validatoridentifier-requiredvalidatoreditor>`
 
 :aspect:`Good to know`
       - :ref:`"Custom validator implementations"<concepts-validators-customvalidatorimplementations>`
@@ -107,12 +107,12 @@ Properties
       This array key identifies a validator. This identifier could be used to attach a validator to a form element.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.<validatoridentifier>-commonproperties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-commonproperties:
 
 Common <validatorIdentifier> properties
 =======================================
 
-.. _prototypes.<prototypeIdentifier>.validatorsdefinition.<validatoridentifier>.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -130,7 +130,7 @@ implementationClassName
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete validators configuration <prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete validators configuration <prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom validator implementations"<concepts-validators-customvalidatorimplementations>`
@@ -139,7 +139,7 @@ implementationClassName
       .. include:: properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.validatorsdefinition.<validatoridentifier>.options:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier.options:
 
 options
 -------
@@ -154,10 +154,10 @@ options
       Frontend/ Backend (form editor)
 
 :aspect:`Mandatory`
-      Depends (see :ref:`concrete validators configuration <prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete validators configuration <prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations>`)
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete validators configuration <prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete validators configuration <prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Custom validator implementations"<concepts-validators-customvalidatorimplementations>`
@@ -166,7 +166,7 @@ options
       Array with validator options.
 
 
-.. _prototypes.<prototypeIdentifier>.validatorsdefinition.<validatoridentifier>.formeditor:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier.formeditor:
 
 formEditor
 ----------
@@ -184,7 +184,7 @@ formEditor
       Recommended
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete validators configuration <prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete validators configuration <prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -193,7 +193,7 @@ formEditor
       Array with configurations for the ``form editor``
 
 
-.. _prototypes.<prototypeIdentifier>.validatorsdefinition.<validatoridentifier>.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier.formeditor.iconidentifier:
 
 formeditor.iconIdentifier
 -------------------------
@@ -211,7 +211,7 @@ formeditor.iconIdentifier
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete validators configuration <prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete validators configuration <prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -220,7 +220,7 @@ formeditor.iconIdentifier
       .. include:: properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.validatorsdefinition.<validatoridentifier>.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier.formeditor.label:
 
 formeditor.label
 ----------------
@@ -238,7 +238,7 @@ formeditor.label
       Yes
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete validators configuration <prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete validators configuration <prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations>`)
 
 :aspect:`Good to know`
       - :ref:`"Translate form editor settings"<concepts-formeditor-translation-formeditor>`
@@ -247,7 +247,7 @@ formeditor.label
       .. include:: properties/label.rst.txt
 
 
-.. _prototypes.<prototypeIdentifier>.validatorsdefinition.<validatoridentifier>.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier.formeditor.predefineddefaults:
 
 formeditor.predefinedDefaults
 -----------------------------
@@ -265,7 +265,7 @@ formeditor.predefinedDefaults
       No
 
 :aspect:`Default value`
-      Depends (see :ref:`concrete validators configuration <prototypes.\<prototypeidentifier>.validatorsdefinition.\<validatoridentifier>-concreteconfigurations>`)
+      Depends (see :ref:`concrete validators configuration <prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations>`)
 
 .. :aspect:`Good to know`
       ToDo
@@ -274,7 +274,7 @@ formeditor.predefinedDefaults
       .. include:: properties/predefinedDefaults.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.<validatoridentifier>-concreteconfigurations:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.validatoridentifier-concreteconfigurations:
 
 Concrete configurations
 =======================
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/properties/iconIdentifier.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/properties/iconIdentifier.rst.txt
index 6107360cde922725b34babeabad15abc8c269eeb..852ef1a887541cdd3e5b83f58a407217c8c0294d 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/properties/iconIdentifier.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/properties/iconIdentifier.rst.txt
@@ -1,4 +1,4 @@
 
 
 An icon identifier which must be registered through the :php:`\TYPO3\CMS\Core\Imaging\IconRegistry`.
-This icon will be shown within the - :ref:`"Inspector [CollectionElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>` if the validator is selected.
+This icon will be shown within the - :ref:`"Inspector [CollectionElementHeaderEditor]"<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>` if the validator is selected.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/properties/label.rst.txt b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/properties/label.rst.txt
index 5ce7fa18a4de6861fe03859e972d5c6de5987760..06b681fc4b783b85379d85f0589c039071a111df 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/properties/label.rst.txt
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/properties/label.rst.txt
@@ -1,3 +1,3 @@
 
 
-This label will be shown within the - :ref:`"Inspector [CollectionElementHeaderEditor]"<prototypes.\<prototypeidentifier>.formelementsdefinition.\<formelementtypeidentifier>.formeditor.editors.*.collectionelementheadereditor>` if the validator is selected.
+This label will be shown within the - :ref:`"Inspector [CollectionElementHeaderEditor]"<prototypes.prototypeidentifier.formelementsdefinition.formelementtypeidentifier.formeditor.editors.*.collectionelementheadereditor>` if the validator is selected.
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Alphanumeric.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Alphanumeric.rst
index b318d266ccd6186cd94e5149696208c5dd927bd1..7ef82024d96209eb0cea8d916869d2c844def285 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Alphanumeric.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Alphanumeric.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.alphanumeric:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.alphanumeric:
 
 ==============
 [Alphanumeric]
 ==============
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.alphanumeric-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.alphanumeric-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -17,13 +17,13 @@ Validation error codes
 - Error message: `The given subject was not a valid alphanumeric string.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.alphanumeric-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.alphanumeric-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.alphanumeric.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.alphanumeric.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -55,7 +55,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.alphanumeric.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.alphanumeric.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -89,7 +89,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.alphanumeric.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.alphanumeric.formeditor.label:
 
 formEditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Count.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Count.rst
index c24757b66fae3c3e977a356b03b1ba76e59cd6e5..ae00d4830c05853faf0c68f5dba776b20d288fe9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Count.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Count.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count:
 
 =======
 [Count]
 =======
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -20,13 +20,13 @@ Validation error codes
 - Error message: `You must select between %s to %s elements.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -58,7 +58,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count.options.minimum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count.options.minimum:
 
 options.minimum
 ---------------
@@ -82,7 +82,7 @@ options.minimum
       The minimum count to accept.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count.options.maximum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count.options.maximum:
 
 options.maximum
 ---------------
@@ -106,7 +106,7 @@ options.maximum
       The maximum count to accept.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -140,7 +140,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count.formeditor.label:
 
 formEditor.label
 ----------------
@@ -174,7 +174,7 @@ formEditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.count.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.count.formeditor.predefineddefaults:
 
 formEditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/DateRange.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/DateRange.rst
index 05240c9e872fe94d68be377c21d1a63fbdec6a6f..fd5f5a42726876934b08d1ec396e7fbf3f4bb1d3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/DateRange.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/DateRange.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange:
 
 ===========
 [DateRange]
 ===========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -23,13 +23,13 @@ Validation error codes
 - Error message: `You must select a date after %s.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -61,7 +61,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange.options.format:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange.options.format:
 
 options.format
 --------------
@@ -90,7 +90,7 @@ options.format
       The format of the minimum and maximum option.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange.options.minimum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange.options.minimum:
 
 options.minimum
 ---------------
@@ -114,7 +114,7 @@ options.minimum
       The minimum date formatted as Y-m-d.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange.options.maximum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange.options.maximum:
 
 options.maximum
 ---------------
@@ -138,7 +138,7 @@ options.maximum
       The maximum date formatted as Y-m-d.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -172,7 +172,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange.formeditor.label:
 
 formEditor.label
 ----------------
@@ -206,7 +206,7 @@ formEditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.daterange.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.daterange.formeditor.predefineddefaults:
 
 formEditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/DateTime.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/DateTime.rst
index 06312489ea8bbb11f9a77c79c569dec33a72f263..feed5ceff8a60895ca9c7937397e8c5be87e9ce5 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/DateTime.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/DateTime.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.datetime:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.datetime:
 
 ==========
 [DateTime]
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.datetime-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.datetime-validationerrorcodes:
 
 validation error codes
 ======================
@@ -17,13 +17,13 @@ validation error codes
 - Error message: `The given subject was not a valid DateTime. Got: '%s'`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.datetime-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.datetime-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.datetime.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.datetime.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -55,7 +55,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.datetime.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.datetime.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -89,7 +89,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.datetime.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.datetime.formeditor.label:
 
 formEditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/EmailAddress.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/EmailAddress.rst
index ba0ea1e07404ba48eab51c418539c33c7fc5a57b..5a89788267686bbc96784e593bcce3c629c37616 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/EmailAddress.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/EmailAddress.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.emailaddress:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.emailaddress:
 
 ==============
 [EmailAddress]
 ==============
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.emailaddress-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.emailaddress-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -17,13 +17,13 @@ Validation error codes
 - Error message: `The given subject was not a valid email address.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.emailaddress-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.emailaddress-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.emailaddress.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.emailaddress.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -57,7 +57,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.emailaddress.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.emailaddress.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -91,7 +91,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.emailaddress.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.emailaddress.formeditor.label:
 
 formEditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/FileSize.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/FileSize.rst
index 25d8ddcf9584344e0ab53297162a3ebc0dc368a6..357e49cdd5c7e702a135f5a0b6b041a46d4b01e3 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/FileSize.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/FileSize.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize:
 
 ==========
 [FileSize]
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -24,13 +24,13 @@ Validation error codes
 - Error message: `You must select a file that is no larger than %s.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -62,7 +62,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize.options.minimum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize.options.minimum:
 
 options.minimum
 ---------------
@@ -86,7 +86,7 @@ options.minimum
       The minimum filesize to accept. Use the format `<size>B|K|M|G`. For example: `10M` means 10 Megabytes.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize.options.maximum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize.options.maximum:
 
 options.maximum
 ---------------
@@ -110,7 +110,7 @@ options.maximum
       The maximum filesize to accept. Use the format `<size>B|K|M|G`. For example: `10M` means 10 Megabytes.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -144,7 +144,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize.formeditor.label:
 
 formEditor.label
 ----------------
@@ -178,7 +178,7 @@ formEditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.filesize.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.filesize.formeditor.predefineddefaults:
 
 formEditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Float.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Float.rst
index dfa737a6aade0ef9b404f1d65d1c2f71c5853e3f..fb6184c294efead5cfd2509d2f71cbc5d2dc893c 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Float.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Float.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.float:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.float:
 
 =======
 [Float]
 =======
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.float-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.float-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -17,13 +17,13 @@ Validation error codes
 - Error message: `The given subject was not a valid float.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.float-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.float-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.float.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.float.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -55,7 +55,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.float.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.float.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -89,7 +89,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.float.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.float.formeditor.label:
 
 formEditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Integer.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Integer.rst
index 920686f3bf2a28b1ec72986dd1c41c36e0dada05..a25e3f8a5932bd331c16730369ef7099b80c0226 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Integer.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Integer.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.integer:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.integer:
 
 =========
 [Integer]
 =========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.integer-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.integer-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -17,13 +17,13 @@ Validation error codes
 - Error message: `The given subject was not a valid integer.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.integer-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.integer-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.integer.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.integer.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -55,7 +55,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.integer.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.integer.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -89,7 +89,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.integer.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.integer.formeditor.label:
 
 formEditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/NotEmpty.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/NotEmpty.rst
index 262ee07c0897bcd07b23c02b8af9e20159ce39d2..a7b01fffa985fc84451b86c2dea7f7e8c6b7f805 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/NotEmpty.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/NotEmpty.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.notempty:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.notempty:
 
 ==========
 [NotEmpty]
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.notempty-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.notempty-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -26,13 +26,13 @@ Validation error codes
 - Error message: `The given subject was empty.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.notempty-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.notempty-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.notempty.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.notempty.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -64,7 +64,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.notempty.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.notempty.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -98,7 +98,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.notempty.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.notempty.formeditor.label:
 
 formEditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Number.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Number.rst
index d4e0f207b19c65d7afd703193b6a5d4b5c3f4155..eb7fb1c8c857bad7aa69ee02905cf6be2a975578 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Number.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Number.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.number:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.number:
 
 ========
 [Number]
 ========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.number-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.number-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -17,13 +17,13 @@ Validation error codes
 - Error message: `The given subject was not a valid number.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.number-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.number-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.number.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.number.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -55,7 +55,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.number.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.number.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -89,7 +89,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.number.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.number.formeditor.label:
 
 formEditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/NumberRange.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/NumberRange.rst
index 3d886453df4409b11544df4a14bc04025b38bb5a..a954814896951b4f01079220e202b58bd8401ae7 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/NumberRange.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/NumberRange.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange:
 
 =============
 [NumberRange]
 =============
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -20,13 +20,13 @@ Validation error codes
 - Error message: `The given subject was not in the valid range (%s - %s).`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -58,7 +58,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange.options.minimum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange.options.minimum:
 
 options.minimum
 ---------------
@@ -82,7 +82,7 @@ options.minimum
       The minimum value to accept.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange.options.maximum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange.options.maximum:
 
 options.maximum
 ---------------
@@ -106,7 +106,7 @@ options.maximum
       The maximum value to accept.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -140,7 +140,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange.formeditor.label:
 
 formEditor.label
 ----------------
@@ -174,7 +174,7 @@ formEditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.numberrange.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.numberrange.formeditor.predefineddefaults:
 
 formEditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/RegularExpression.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/RegularExpression.rst
index 27815b53ae22e2793ee009a0f14badc90022b065..94694cef1b3af319a5d62c726bac977e237c98dc 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/RegularExpression.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/RegularExpression.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.regularexpression:
 
 ===================
 [RegularExpression]
 ===================
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.regularexpression-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -17,13 +17,13 @@ Validation error codes
 - Error message: `The given subject did not match the pattern.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.regularexpression-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.regularexpression.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -55,7 +55,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression.options.regularExpression:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.regularexpression.options.regularExpression:
 
 options.regularExpression
 -------------------------
@@ -79,7 +79,7 @@ options.regularExpression
       The regular expression to use for validation, used as given.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.regularexpression.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -113,7 +113,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.regularexpression.formeditor.label:
 
 formEditor.label
 ----------------
@@ -147,7 +147,7 @@ formEditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.regularexpression.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.regularexpression.formeditor.predefineddefaults:
 
 formEditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/StringLength.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/StringLength.rst
index dbb3284ddd890f6f6b611e767f1505b2b13c7e84..213c5e058e8d92c09a8107abb4a9974d2566b1dd 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/StringLength.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/StringLength.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength:
 
 ==============
 [StringLength]
 ==============
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -29,13 +29,13 @@ Validation error codes
 - Error message: `The length of the given string exceeded %s characters.`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -67,7 +67,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength.options.minimum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength.options.minimum:
 
 options.minimum
 ---------------
@@ -91,7 +91,7 @@ options.minimum
       Minimum length for a valid string.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength.options.maximum:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength.options.maximum:
 
 options.maximum
 ---------------
@@ -115,7 +115,7 @@ options.maximum
       Maximum length for a valid string.
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -149,7 +149,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength.formeditor.label:
 
 formEditor.label
 ----------------
@@ -183,7 +183,7 @@ formEditor.label
       .. include:: ../properties/label.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.stringlength.formeditor.predefineddefaults:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.stringlength.formeditor.predefineddefaults:
 
 formEditor.predefinedDefaults
 -----------------------------
diff --git a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Text.rst b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Text.rst
index db5b336e4f119a050419a307f059d6da85300f08..88917cf69755196605ea93c0a73586045f781ea9 100644
--- a/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Text.rst
+++ b/typo3/sysext/form/Documentation/I/Config/proto/validatorsDefinition/validators/Text.rst
@@ -1,14 +1,14 @@
 .. include:: /Includes.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.text:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.text:
 
 ======
 [Text]
 ======
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.text-validationerrorcodes:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.text-validationerrorcodes:
 
 Validation error codes
 ======================
@@ -17,13 +17,13 @@ Validation error codes
 - Error message: `The given subject was not a valid text (e.g. contained XML tags).`
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.text-properties:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.text-properties:
 
 Properties
 ==========
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.text.implementationClassName:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.text.implementationClassName:
 
 implementationClassName
 -----------------------
@@ -55,7 +55,7 @@ implementationClassName
       .. include:: ../properties/implementationClassName.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.text.formeditor.iconidentifier:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.text.formeditor.iconidentifier:
 
 formEditor.iconIdentifier
 -------------------------
@@ -89,7 +89,7 @@ formEditor.iconIdentifier
       .. include:: ../properties/iconIdentifier.rst.txt
 
 
-.. _prototypes.<prototypeidentifier>.validatorsdefinition.text.formeditor.label:
+.. _prototypes.prototypeIdentifier.validatorsdefinition.text.formeditor.label:
 
 formEditor.label
 ----------------
diff --git a/typo3/sysext/form/Documentation/I/FAQ/Index.rst b/typo3/sysext/form/Documentation/I/FAQ/Index.rst
index de0c54923a2a0fd362b520e6a8064d4f52d29e06..9a97924fa129253e608fe410f77db447971475e7 100644
--- a/typo3/sysext/form/Documentation/I/FAQ/Index.rst
+++ b/typo3/sysext/form/Documentation/I/FAQ/Index.rst
@@ -167,7 +167,7 @@ The honeypot does not work with static site caching. What can I do?
 
 If you want to use a static site caching - for example using the
 staticfilecache extension - you should disable the automatic inclusion of the
-honeypot. Read more :ref:`here<prototypes.\<prototypeIdentifier>.formelementsdefinition.form.renderingoptions.honeypot.enable>`.
+honeypot. Read more :ref:`here<prototypes.prototypeIdentifier.formelementsdefinition.form.renderingoptions.honeypot.enable>`.
 
 
 .. _faq-form-element-default-value:
@@ -187,7 +187,7 @@ form is loaded. In contrast, the :yaml:`prependOptionValue` allows you to define
 string which will be shown as the first select-option. If both settings exist,
 the :yaml:`defaultValue` is prioritized.
 
-Learn more :ref:`here<prototypes.\<prototypeIdentifier>.formelementsdefinition.\<formelementtypeidentifier>.defaultValue>`
+Learn more :ref:`here<prototypes.prototypeIdentifier.formelementsdefinition.formelementtypeidentifier.defaultValue>`
 and see the forge issue `#82422 <https://forge.typo3.org/issues/82422#note-6>`_.