diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-89468-DeprecateInjectionOfEnvironmentServiceInWebRequest.rst b/typo3/sysext/core/Documentation/Changelog/master/Deprecation-89468-DeprecateInjectionOfEnvironmentServiceInWebRequest.rst
index 708d7abff4968140f6dd17824d5b75fb47390e49..8bb93f98586c8a48fb7e85e3ae2bdb0b93281899 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-89468-DeprecateInjectionOfEnvironmentServiceInWebRequest.rst
+++ b/typo3/sysext/core/Documentation/Changelog/master/Deprecation-89468-DeprecateInjectionOfEnvironmentServiceInWebRequest.rst
@@ -26,7 +26,7 @@ Affected Installations
 ======================
 
 All installations that implement subclasses of :php:`\TYPO3\CMS\Extbase\Mvc\Web\Response` and expect an instance of the
-:php:`EnvironmentService`to be injected into :php:`\TYPO3\CMS\Extbase\Mvc\Web\Response::$environmentService`.
+:php:`EnvironmentService` to be injected into :php:`\TYPO3\CMS\Extbase\Mvc\Web\Response::$environmentService`.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-89718-UnifiedPHPAPIForLoadingPageTSconfig.rst b/typo3/sysext/core/Documentation/Changelog/master/Feature-89718-UnifiedPHPAPIForLoadingPageTSconfig.rst
index 215a650f1c52282f725a7764c3c3a09561fb8f0c..705ba52b4f44d43c457eebc60987b44f2f31d5d3 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-89718-UnifiedPHPAPIForLoadingPageTSconfig.rst
+++ b/typo3/sysext/core/Documentation/Changelog/master/Feature-89718-UnifiedPHPAPIForLoadingPageTSconfig.rst
@@ -16,12 +16,12 @@ TYPO3 Backend, which can also be used to define Backend Layouts.
 
 In order to streamline this functionality, the loading process of
 gathering all data from a rootline of a page is now simplified in
-a new PageTsLoader PHP class.
+a new :php:`PageTsLoader` PHP class.
 
 Additionally, parsing, and additional matching against conditions,
 which was added later-on in 2009 and put on top, is now separated
 properly, building a truly separation of concerns for compiling
-and parsing TSconfig. This is put in the PageTsConfigParser PHP class.
+and parsing TSconfig. This is put in the :php:`PageTsConfigParser` PHP class.
 
 
 Impact
@@ -30,19 +30,18 @@ Impact
 When there is the necessity for fetching and loading PageTSconfig,
 it is recommended for extension developers to make use of both new
 PHP classes:
+
 - :php:`TYPO3\CMS\Core\Configuration\Loader\PageTsConfigLoader`
 - :php:`TYPO3\CMS\Core\Configuration\Parser\PageTsConfigParser`
 
-Usages for fetching all available PageTS in one large string (not parsed yet):
+Usages for fetching all available PageTS in one large string (not parsed yet)::
 
-:php:
     $loader = GeneralUtility::makeInstance(PageTsConfigLoader::class);
     $tsConfigString = $loader->load($rootLine);
 
 
-The string can then be put in proper TSconfig array syntax:
+The string can then be put in proper TSconfig array syntax::
 
-:php:
             $parser = GeneralUtility::makeInstance(
                 PageTsConfigParser::class,
                 $typoScriptParser,
@@ -56,4 +55,4 @@ The string can then be put in proper TSconfig array syntax:
 Extension developers should rely on this syntax rather than
 on :php:`$GLOBALS['TSFE']->getPagesTSconfig()` or :php:`BackendUtility::getPagesTsConfig()`.
 
-.. index:: PHP-API, TSConfig, ext:core
\ No newline at end of file
+.. index:: PHP-API, TSConfig, ext:core
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Important-88655-ChangedLoadingOrderOfRTEConfiguration.rst b/typo3/sysext/core/Documentation/Changelog/master/Important-88655-ChangedLoadingOrderOfRTEConfiguration.rst
index 0dcb7da3f7a44ba462fa5b1df8deec411b1ef23b..5d98a91074ee81a0753ce28685d820024af839bf 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Important-88655-ChangedLoadingOrderOfRTEConfiguration.rst
+++ b/typo3/sysext/core/Documentation/Changelog/master/Important-88655-ChangedLoadingOrderOfRTEConfiguration.rst
@@ -12,28 +12,33 @@ Description
 The order in which RTE Configuration is loaded has been changed.
 
 The new order is:
-1. preset defined for a specific field via PageTS
-2. richtextConfiguration defined for a specific field via TCA
-3. general preset defined via PageTS
-4. default
 
-This results in a change if you were used to using `RTE.default.preset` to overwrite _all_ RTE 
-configuration presets - as those with specific configuration in TCA now use their specific settings 
+#. preset defined for a specific field via PageTS
+
+#. richtextConfiguration defined for a specific field via TCA
+
+#. general preset defined via PageTS
+
+#. default
+
+This results in a change if you were used to using :ts:`RTE.default.preset` to overwrite _all_ RTE
+configuration presets - as those with specific configuration in TCA now use their specific settings
 instead of falling back to the default. Please make sure, that this new behavior is fitting for your
 use cases.
 
 If you are an extension author and you want your RTE fields to use the systems default configuration
 (the one configured for the complete web site) please do not set a specific preset for your fields.
-If you as an extension author want to provide a specific preset - for example because you are 
+If you as an extension author want to provide a specific preset - for example because you are
 providing a custom parseFunc - set the property `richtextConfiguration` in TCA.
 
-If an extension provides a custom preset for a specific field and you as an integrator want to 
+If an extension provides a custom preset for a specific field and you as an integrator want to
 override that configuration (for example to use "your" default), set it specifically for that field
 in TSConfig or overwrite the TCA configuration.
 
 For example:
-If the blog extension configures `'richtextConfiguration' => 'blog'` for the tag description and 
-you want the tag description to use the default preset, set 
-`RTE.config.tx_blog_domain_model_tag.content.types.text.preset = default`.
 
-.. index:: RTE, TCA, TSConfig, ext:core
\ No newline at end of file
+If the blog extension configures `'richtextConfiguration' => 'blog'` for the tag description and
+you want the tag description to use the default preset, set
+:ts:`RTE.config.tx_blog_domain_model_tag.content.types.text.preset = default`.
+
+.. index:: RTE, TCA, TSConfig, ext:core
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Important-89645-RemovedSystemLogOptions.rst b/typo3/sysext/core/Documentation/Changelog/master/Important-89645-RemovedSystemLogOptions.rst
index 5a48ae254a10c76f21d8f8272058c357b201c52f..fa1db34f260114750c716e6ac7cc144f97bdfe7a 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Important-89645-RemovedSystemLogOptions.rst
+++ b/typo3/sysext/core/Documentation/Changelog/master/Important-89645-RemovedSystemLogOptions.rst
@@ -14,7 +14,9 @@ options have been kept in TYPO3 v9 for backwards-compatibility of existing exten
 anymore.
 
 The affected options are:
+
 - :php:`$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLog']`
+
 - :php:`$GLOBALS['TYPO3_CONF_VARS']['SYS']['systemLogLevel']`
 
 Impact