From 41f113370b3bb87dc2894f60520fc39c27b23529 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Tue, 16 Aug 2022 14:40:44 +0200 Subject: [PATCH] getting_started.md: move information about sbt plugin to the bottom and change its type to a tip According to the call-outs doc, "tip" should be used for optional information, and "note" for important information that you want to highlight. SBT plugin is not widely used and important. --- topics/basics/getting_started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/topics/basics/getting_started.md b/topics/basics/getting_started.md index 278a904d6..5e199c17a 100644 --- a/topics/basics/getting_started.md +++ b/topics/basics/getting_started.md @@ -15,10 +15,6 @@ There are three supported workflows available for building plugins. The recommended workflow for new projects is to [use GitHub Template](#using-github-template) or to [use Gradle](#using-gradle) to create everything from scratch. The old [Plugin DevKit](#using-devkit) workflow still supports existing projects. -> If a new plugin will be Scala-based, a dedicated [SBT plugin](https://github.com/JetBrains/sbt-idea-plugin) is available. -> -{type="note"} - ## Using GitHub Template * [Developing plugins using GitHub Template](github_template.md) @@ -38,3 +34,7 @@ The old [Plugin DevKit](#using-devkit) workflow still supports existing projects * [Running and Debugging a Plugin](running_and_debugging_a_plugin.md) * [Deploying a Plugin](deploying_plugin.md) * [Publishing a Plugin](publishing_plugin.md) + +> A dedicated [SBT plugin](https://github.com/JetBrains/sbt-idea-plugin) is available for plugins implemented in Scala. +> +{type="tip"}