diff --git a/topics/basics/getting_started/plugin/developing_plugins.md b/topics/basics/getting_started/plugin/developing_plugins.md
index 8576c8ed3..77b3ffd3a 100644
--- a/topics/basics/getting_started/plugin/developing_plugins.md
+++ b/topics/basics/getting_started/plugin/developing_plugins.md
@@ -15,6 +15,8 @@ Before starting with the actual development, make sure to understand all require
The recommended solution for building IntelliJ Platform plugins is [](tools_gradle_intellij_plugin.md).
+
+
The IntelliJ IDEA Ultimate and Community editions provide the necessary plugins to support Gradle-based plugin development: _Gradle_ and _Plugin DevKit_.
To verify these plugins are installed and enabled, see the help section about [Managing Plugins](https://www.jetbrains.com/help/idea/managing-plugins.html).
@@ -31,12 +33,12 @@ There are two main ways of creating a new Gradle-based IntelliJ Platform plugin
This documentation section describes plugin structure generated with the New Project wizard, but the project generated with _IntelliJ Platform Plugin Template_ covers all the described files and directories.
See the [](plugin_github_template.md) section for more information about the advantages of this approach and instructions on how to use it.
-> The old DevKit project model and workflow are still supported in existing projects and are recommended for [creating theme plugins](developing_themes.md).
-> See how to [migrate a DevKit plugin to Gradle](migrating_plugin_devkit_to_gradle.md).
->
+### Alternatives
-> A dedicated [SBT plugin](https://github.com/JetBrains/sbt-idea-plugin) is available for plugins implemented in Scala.
->
+The old DevKit project model and workflow are still supported in existing projects and are recommended for [creating theme plugins](developing_themes.md).
+See how to [migrate a DevKit plugin to Gradle](migrating_plugin_devkit_to_gradle.md).
+
+A dedicated [SBT plugin](https://github.com/JetBrains/sbt-idea-plugin) is available for plugins implemented in Scala.
## Plugin Development Workflow
diff --git a/topics/tutorials/build_system/configuring_plugin_project.md b/topics/tutorials/build_system/configuring_plugin_project.md
index e24567cf1..4ec9c982b 100644
--- a/topics/tutorials/build_system/configuring_plugin_project.md
+++ b/topics/tutorials/build_system/configuring_plugin_project.md
@@ -7,6 +7,8 @@
This section presents a guided tour of Gradle plugin attributes to achieve the commonly desired functionality.
For more advanced options, see the full [Gradle IntelliJ Plugin](tools_gradle_intellij_plugin.md) reference.
+
+
## Keep Up To Date
Gradle IntelliJ Plugin and [Gradle](https://gradle.org/install/) build system are constantly developed, and every new release brings important bug fixes, new features, and improvements that makes the development more efficient.
diff --git a/topics/tutorials/build_system/creating_plugin_project.md b/topics/tutorials/build_system/creating_plugin_project.md
index 8a79ee1b5..a9c644591 100644
--- a/topics/tutorials/build_system/creating_plugin_project.md
+++ b/topics/tutorials/build_system/creating_plugin_project.md
@@ -8,6 +8,8 @@ This documentation page describes a Gradle-based plugin project generated with t
## Creating a Plugin with New Project Wizard
+
+