diff --git a/labels.list b/labels.list
index 27d0a509e..f69f655b5 100644
--- a/labels.list
+++ b/labels.list
@@ -9,6 +9,8 @@
+
+
diff --git a/topics/basics/basic_action_system.md b/topics/basics/basic_action_system.md
index 61885f765..d29c3d70d 100644
--- a/topics/basics/basic_action_system.md
+++ b/topics/basics/basic_action_system.md
@@ -197,8 +197,9 @@ There are two main ways to register an action: either by listing it in the [`plugin.xml is demonstrated in the following reference examples, which document all elements and attributes used in the [``](plugin_configuration_file.md#idea-plugin__actions) section and describe each element's meaning.
#### Setting the `override-text` Element
+
-Beginning in 2020.1, an alternate version of an action's menu text can be declared for use depending on where an action appears.
+An alternate version of an action's menu text can be declared for use depending on where an action appears.
Using the [``](plugin_configuration_file.md#idea-plugin__actions__action__override-text) element, the menu text for an action can be different depending on context: menu location, toolbar, etc.
This is also available for groups in 2020.3 and later.
diff --git a/topics/basics/getting_started/plugin_compatibility.md b/topics/basics/getting_started/plugin_compatibility.md
index 5c2deb8a0..878aa76a0 100644
--- a/topics/basics/getting_started/plugin_compatibility.md
+++ b/topics/basics/getting_started/plugin_compatibility.md
@@ -37,8 +37,9 @@ Some modules are available in all products, and some modules are available only
This section identifies and discusses modules of both types.
### Declaring Incompatibility with Module
+
-Starting in 2020.2, a plugin can declare incompatibility with an arbitrary module by specifying [``](plugin_configuration_file.md#idea-plugin__incompatible-with) containing module ID in its plugin.xml.
+A plugin can declare incompatibility with an arbitrary module by specifying [``](plugin_configuration_file.md#idea-plugin__incompatible-with) containing module ID in its plugin.xml.
### Modules Available in All Products
diff --git a/topics/basics/indexing_and_psi_stubs.md b/topics/basics/indexing_and_psi_stubs.md
index 9cc964edb..30f1259d0 100644
--- a/topics/basics/indexing_and_psi_stubs.md
+++ b/topics/basics/indexing_and_psi_stubs.md
@@ -75,8 +75,9 @@ Please see [`VirtualFileGist`](%gh-ic%/platform/indexing-api/src/com/intellij/ut
## Improving Indexing Performance
### Performance Metrics
+
-Indexing performance metrics in JSON format are generated in [logs directory](https://intellij-support.jetbrains.com/hc/en-us/articles/206544519-Directories-used-by-the-IDE-to-store-settings-caches-plugins-and-logs) (see [sandbox directory](ide_development_instance.md#the-development-instance-sandbox-directory) for development instance) in 2020.2 and later.
+Indexing performance metrics in JSON format are generated in [logs directory](https://intellij-support.jetbrains.com/hc/en-us/articles/206544519-Directories-used-by-the-IDE-to-store-settings-caches-plugins-and-logs) (see [sandbox directory](ide_development_instance.md#the-development-instance-sandbox-directory) for development instance).
These are additionally available in HTML format starting with 2021.1.
### Avoid Using AST
diff --git a/topics/basics/plugin_structure/dynamic_plugins.md b/topics/basics/plugin_structure/dynamic_plugins.md
index 24a27c1c3..b39db44af 100644
--- a/topics/basics/plugin_structure/dynamic_plugins.md
+++ b/topics/basics/plugin_structure/dynamic_plugins.md
@@ -1,10 +1,11 @@
# Dynamic Plugins
+
-Making a plugin dynamic allows installing, updating, and uninstalling it without IDE restart, as well as hot reloading plugin changes during the development.
+Making a plugin dynamic allows installing, updating, and uninstalling it without an IDE restart, as well as hot reloading plugin changes during the development.
-Starting with the **2020.1** release, installing, updating, and uninstalling plugins without restarting the IDE is available in the IntelliJ Platform.
+Installing, updating, and uninstalling plugins without restarting the IDE is available in the IntelliJ Platform.
During plugin development, [Auto-Reload](ide_development_instance.md#enabling-auto-reload) also allows code changes to take effect immediately in the sandbox IDE instance.
To test whether dynamic installation works correctly, verify installing [local build distribution](publishing_plugin.md#building-distribution) succeeds (see [Troubleshooting](#troubleshooting)).
diff --git a/topics/basics/plugin_structure/plugin_configuration_file.md b/topics/basics/plugin_structure/plugin_configuration_file.md
index 7dbdded6b..2fc066c40 100644
--- a/topics/basics/plugin_structure/plugin_configuration_file.md
+++ b/topics/basics/plugin_structure/plugin_configuration_file.md
@@ -396,7 +396,7 @@ Examples
### `incompatible-with`
{#idea-plugin__incompatible-with}
-_Supported since 2020.2_
+
Declares incompatibility with a provided module.
diff --git a/topics/basics/plugin_structure/plugin_extension_points.md b/topics/basics/plugin_structure/plugin_extension_points.md
index 4040a5df7..c1e7d8e53 100644
--- a/topics/basics/plugin_structure/plugin_extension_points.md
+++ b/topics/basics/plugin_structure/plugin_extension_points.md
@@ -168,11 +168,12 @@ To report use of deprecated API, use `PluginException.reportDeprecatedUsage()` m
- [`InspectionProfileEntry.getDisplayName()`](%gh-ic%/platform/analysis-api/src/com/intellij/codeInspection/InspectionProfileEntry.java)
## Dynamic Extension Points
+
-To support [Dynamic Plugins](dynamic_plugins.md) (2020.1 and later), an extension point must adhere to specific usage rules:
+To support [Dynamic Plugins](dynamic_plugins.md), an extension point must adhere to specific usage rules:
- extensions are enumerated on every use and extensions instances are not stored anywhere
-- alternatively, an [`ExtensionPointListener`](%gh-ic%/platform/extensions/src/com/intellij/openapi/extensions/ExtensionPointListener.kt) can perform necessary updates of data structures (register via `ExtensionPointName.addExtensionPointListener()`)
+- alternatively, an [`ExtensionPointListener`](%gh-ic%/platform/extensions/src/com/intellij/openapi/extensions/ExtensionPointListener.kt) can perform any necessary updates of data structures (register via `ExtensionPointName.addExtensionPointListener()`)
Extension points matching these conditions can then be marked as _dynamic_ by adding `dynamic="true"` in their declaration:
@@ -185,5 +186,4 @@ Extension points matching these conditions can then be marked as _dynamic_ by ad
```
-> All non-dynamic extension points are highlighted via Plugin DevKit | Plugin descriptor | Plugin.xml dynamic plugin verification inspection available in IntelliJ IDEA 2020.1 or later.
-> Previous versions also highlight the `dynamic` attribute as "experimental".
+All non-dynamic extension points are highlighted via Plugin DevKit | Plugin descriptor | Plugin.xml dynamic plugin verification inspection.
diff --git a/topics/reference_guide/frameworks_and_external_apis/external_system_integration.md b/topics/reference_guide/frameworks_and_external_apis/external_system_integration.md
index 05cbd7b67..8659a37ad 100644
--- a/topics/reference_guide/frameworks_and_external_apis/external_system_integration.md
+++ b/topics/reference_guide/frameworks_and_external_apis/external_system_integration.md
@@ -146,8 +146,9 @@ Then register the instance with `ExternalSystemProjectTracker` to start tracking
{style="note"}
### Icon for Reload Notification
+
-From 2020.1, the icon for reload notification can be specified per external system.
+The icon for reload notification can be specified per external system.
Implement [`ExternalSystemIconProvider`](%gh-ic%/platform/external-system-api/src/com/intellij/openapi/externalSystem/ui/ExternalSystemIconProvider.kt) and register via [com.intellij.externalIconProvider](https://jb.gg/ipe?extensions=com.intellij.externalIconProvider) extension point in [plugin.xml](plugin_configuration_file.md).
Alternatively, set `reloadIcon` field external system implements `ExternalSystemIconProvider` directly.
diff --git a/topics/reference_guide/jcef.md b/topics/reference_guide/jcef.md
index 8be1dcd16..7766b320b 100644
--- a/topics/reference_guide/jcef.md
+++ b/topics/reference_guide/jcef.md
@@ -1,6 +1,7 @@
# Embedded Browser (JCEF)
+
Embedding Chromium-based browser in IDE.
diff --git a/topics/tutorials/action_system/working_with_custom_actions.md b/topics/tutorials/action_system/working_with_custom_actions.md
index a5573ca5a..5f1242aa7 100644
--- a/topics/tutorials/action_system/working_with_custom_actions.md
+++ b/topics/tutorials/action_system/working_with_custom_actions.md
@@ -136,8 +136,9 @@ The full declaration is:
```
#### Using `override-text` for an Action
+
-By using the `override-text` element introduced in 2020.1 of the IntelliJ Platform, the action text can be different depending on the context of where the action appears: menu, toolbar, etc.
+By using the `override-text` element, the action text can be different depending on the context of where the action appears: menu, toolbar, etc.
The example above uses this element to ensure the shorter text "Popup Dialog Action" is shown anywhere the action appears in the main menu structure.
Otherwise, the default, more explanatory text "Action Basics Plugin: Popup Dialog Action" is shown.
For more information, see [](basic_action_system.md#setting-the-override-text-element).