diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index db4c02723..2c8a25bad 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,4 +2,4 @@ # Contributing to the IntelliJ Platform SDK -Please see [page in SDK Documentation](https://plugins.jetbrains.com/docs/intellij/intellij-sdk-docs-original-contributing.html). \ No newline at end of file +Please see [page in SDK Documentation](https://plugins.jetbrains.com/docs/intellij/intellij-sdk-docs-original-contributing.html). diff --git a/code_samples/CONTRIBUTING.md b/code_samples/CONTRIBUTING.md index a51fca8c8..78bd3547b 100644 --- a/code_samples/CONTRIBUTING.md +++ b/code_samples/CONTRIBUTING.md @@ -5,4 +5,4 @@ Before you begin contributing content to the SDK, please read this page thorough This [intellij-sdk-code-samples](https://github.com/JetBrains/intellij-sdk-code-samples) is a mirror of the [IntelliJ SDK Docs Code Samples](https://github.com/JetBrains/intellij-sdk-docs/tree/main/code_samples). Any pull requests should be performed across the [IntelliJ SDK Docs](https://github.com/JetBrains/intellij-sdk-docs) repository. -For more details regarding the Code Samples contribution, please read the [Guidelines for Creating IntelliJ Platform SDK Code Samples](https://jetbrains.org/intellij/sdk/docs/intro/sdk_code_guidelines.html). +For more details regarding the Code Samples contribution, please read the [Guidelines for Creating IntelliJ Platform SDK Code Samples](https://plugins.jetbrains.com/docs/intellij/sdk-code-guidelines.html). diff --git a/code_samples/action_basics/README.md b/code_samples/action_basics/README.md index 74ee3a423..c56f8a63b 100644 --- a/code_samples/action_basics/README.md +++ b/code_samples/action_basics/README.md @@ -28,10 +28,10 @@ Additional features of the plugin: *Reference: [Action System in IntelliJ SDK Docs][docs:actions]* -[docs]: https://www.jetbrains.org/intellij/sdk/docs -[docs:actions]: https://www.jetbrains.org/intellij/sdk/docs/basics/action_system.html -[docs:action-override]: https://www.jetbrains.org/intellij/sdk/docs/basics/action_system.html#setting-the-override-text-element-for-an-action -[docs:action-locale]: https://www.jetbrains.org/intellij/sdk/docs/basics/action_system.html#localizing-actions-and-groups +[docs]: https://plugins.jetbrains.com/docs/intellij/ +[docs:actions]: https://plugins.jetbrains.com/docs/intellij/basic-action-system.html +[docs:action-override]: https://plugins.jetbrains.com/docs/intellij/basic-action-system.html#setting-the-override-text-element +[docs:action-locale]: https://plugins.jetbrains.com/docs/intellij/basic-action-system.html#localizing-actions-and-groups [file:PopupDialogAction]: ./src/main/java/org/intellij/sdk/action/PopupDialogAction.java [file:CustomDefaultActionGroup]: ./src/main/java/org/intellij/sdk/action/CustomDefaultActionGroup.java diff --git a/code_samples/action_basics/src/main/resources/META-INF/plugin.xml b/code_samples/action_basics/src/main/resources/META-INF/plugin.xml index 567daa508..d0a6f502c 100644 --- a/code_samples/action_basics/src/main/resources/META-INF/plugin.xml +++ b/code_samples/action_basics/src/main/resources/META-INF/plugin.xml @@ -35,7 +35,7 @@ SDK: Settings Example - com.intellij.modules.platform diff --git a/code_samples/simple_language_plugin/README.md b/code_samples/simple_language_plugin/README.md index 862fea2e5..ead897845 100644 --- a/code_samples/simple_language_plugin/README.md +++ b/code_samples/simple_language_plugin/README.md @@ -30,9 +30,9 @@ Defines a new language, _Simple language_ with support for syntax highlighting, *Reference: [Plugin Extension Points in IntelliJ SDK Docs][docs:ep]* -[docs]: https://www.jetbrains.org/intellij/sdk/docs -[docs:custom_language_support_tutorial]: https://jetbrains.org/intellij/sdk/docs/tutorials/custom_language_support_tutorial.html -[docs:ep]: https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_extensions.html +[docs]: https://plugins.jetbrains.com/docs/intellij/ +[docs:custom_language_support_tutorial]: https://plugins.jetbrains.com/docs/intellij/custom-language-support-tutorial.html +[docs:ep]: https://plugins.jetbrains.com/docs/intellij/plugin-extensions.html [file:SimpleFileType]: ./src/main/java/org/intellij/sdk/language/SimpleFileType.java [file:SimpleParserDefinition]: ./src/main/java/org/intellij/sdk/language/SimpleParserDefinition.java diff --git a/code_samples/simple_language_plugin/src/main/resources/META-INF/plugin.xml b/code_samples/simple_language_plugin/src/main/resources/META-INF/plugin.xml index dbdca421f..7f552ab28 100644 --- a/code_samples/simple_language_plugin/src/main/resources/META-INF/plugin.xml +++ b/code_samples/simple_language_plugin/src/main/resources/META-INF/plugin.xml @@ -19,7 +19,7 @@ Simple language with support for syntax highlighting, annotations, code completion, and other features.
See the - Custom + Custom Language Tutorial for more information. ]]> diff --git a/code_samples/theme_basics/README.md b/code_samples/theme_basics/README.md index cbc65d0bc..c10efaf11 100644 --- a/code_samples/theme_basics/README.md +++ b/code_samples/theme_basics/README.md @@ -29,11 +29,11 @@ It describes definitions of the actions, extensions, or listeners provided by th *Reference: [Plugin Extension Points in IntelliJ SDK Docs][docs:ep]* -[docs]: https://www.jetbrains.org/intellij/sdk/docs -[docs:themes]: https://jetbrains.org/intellij/sdk/docs/reference_guide/ui_themes/themes.html -[docs:ep]: https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_extensions.html -[docs:devkit]: https://jetbrains.org/intellij/sdk/docs/basics/getting_started/using_dev_kit.html -[docs:plugin.xml]: https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_configuration_file.html +[docs]: https://plugins.jetbrains.com/docs/intellij/ +[docs:themes]: https://plugins.jetbrains.com/docs/intellij/themes.html +[docs:ep]: https://plugins.jetbrains.com/docs/intellij/plugin-extensions.html +[docs:devkit]: https://plugins.jetbrains.com/docs/intellij/using-dev-kit.html +[docs:plugin.xml]: https://plugins.jetbrains.com/docs/intellij/plugin-configuration-file.html [file:plugin.xml]: ./resources/META-INF/plugin.xml [file:theme_basics.theme.json]: ./resources/theme_basics.theme.json diff --git a/code_samples/tool_window/README.md b/code_samples/tool_window/README.md index 7a3959939..40d904826 100644 --- a/code_samples/tool_window/README.md +++ b/code_samples/tool_window/README.md @@ -18,8 +18,8 @@ Component is provided by the `MyToolWindow` class through the `getContent()` met *Reference: [Plugin Extension Points in IntelliJ SDK Docs][docs:ep]* -[docs]: https://www.jetbrains.org/intellij/sdk/docs -[docs:tool_windows]: https://jetbrains.org/intellij/sdk/docs/user_interface_components/tool_windows.html -[docs:ep]: https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_extensions.html +[docs]: https://plugins.jetbrains.com/docs/intellij/ +[docs:tool_windows]: https://plugins.jetbrains.com/docs/intellij/tool-windows.html +[docs:ep]: https://plugins.jetbrains.com/docs/intellij/plugin-extensions.html [file:MyToolWindowFactory]: ./src/main/java/org/intellij/sdk/toolWindow/MyToolWindowFactory.java diff --git a/code_samples/tool_window/src/main/resources/META-INF/plugin.xml b/code_samples/tool_window/src/main/resources/META-INF/plugin.xml index 4fae6f488..16bc410f2 100644 --- a/code_samples/tool_window/src/main/resources/META-INF/plugin.xml +++ b/code_samples/tool_window/src/main/resources/META-INF/plugin.xml @@ -16,7 +16,7 @@ See the - Tool Windows + Tool Windows for more information. ]]> diff --git a/code_samples/tree_structure_provider/README.md b/code_samples/tree_structure_provider/README.md index 8dea7789d..7717b6f21 100644 --- a/code_samples/tree_structure_provider/README.md +++ b/code_samples/tree_structure_provider/README.md @@ -18,8 +18,8 @@ Otherwise, an element is not included in the results list, so only directories a *Reference: [Plugin Extension Points in IntelliJ SDK Docs][docs:ep]* -[docs]: https://www.jetbrains.org/intellij/sdk/docs -[docs:tree_structure_view]: https://www.jetbrains.org/intellij/sdk/docs/tutorials/tree_structure_view.html -[docs:ep]: https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_extensions.html +[docs]: https://plugins.jetbrains.com/docs/intellij/ +[docs:tree_structure_view]: https://plugins.jetbrains.com/docs/intellij/tree-structure-view.html +[docs:ep]: https://plugins.jetbrains.com/docs/intellij/plugin-extensions.html [file:TextOnlyTreeStructureProvider]: ./src/main/java/org/intellij/sdk/treeStructureProvider/TextOnlyTreeStructureProvider.java diff --git a/code_samples/tree_structure_provider/src/main/resources/META-INF/plugin.xml b/code_samples/tree_structure_provider/src/main/resources/META-INF/plugin.xml index 46385a547..4a98af8db 100644 --- a/code_samples/tree_structure_provider/src/main/resources/META-INF/plugin.xml +++ b/code_samples/tree_structure_provider/src/main/resources/META-INF/plugin.xml @@ -15,7 +15,7 @@ See the Tree +
See the
Tree Structure View for more information. ]]>
diff --git a/topics/CONTRIBUTING.md b/topics/CONTRIBUTING.md index daf685d58..201df94a8 100644 --- a/topics/CONTRIBUTING.md +++ b/topics/CONTRIBUTING.md @@ -13,7 +13,7 @@ Here are some useful things to know before authoring SDK content and submitting This site runs via [Jekyll](https://jekyllrb.com), which is a popular static site generator, written in Ruby. It can be hosted locally to ensure that any changes are correct. Once set up, running the site is as easy as calling `rake preview`. -Alternatively, the site can also be hosted in a [Docker container](https://www.docker.com). On Mac and Windows, this means the site is hosted in a virtual machine. Docker maintains this container, building it based on the instructions in the [`Dockerfile`](https://github.com/JetBrains/intellij-sdk-docs/blob/main/Dockerfile). All dependencies (Ruby, etc.) are automatically installed when building the image, which reduces the manual configuration steps. The Docker image is also used to build the [published site](https://www.jetbrains.org/intellij/sdk/docs/index.html), so it is a known working environment. +Alternatively, the site can also be hosted in a [Docker container](https://www.docker.com). On Mac and Windows, this means the site is hosted in a virtual machine. Docker maintains this container, building it based on the instructions in the [`Dockerfile`](https://github.com/JetBrains/intellij-sdk-docs/blob/main/Dockerfile). All dependencies (Ruby, etc.) are automatically installed when building the image, which reduces the manual configuration steps. The Docker image is also used to build the [published site](https://plugins.jetbrains.com/docs/intellij/), so it is a known working environment. ### Developing Documentation with Docker diff --git a/topics/appendix/resources/marketing.md b/topics/appendix/resources/marketing.md index b02b2ad11..bd29e0935 100644 --- a/topics/appendix/resources/marketing.md +++ b/topics/appendix/resources/marketing.md @@ -21,7 +21,7 @@ Adding badges to the README files in open-source projects is common for providin Below are listed a few related to the IntelliJ SDK and plugins development provided by [shields.io](https://shields.io) and [espend.de](https://www.espend.de): - > The following code snippets contain `:pluginId` and `:packageName` placeholders. +> The following code snippets contain `:pluginId` and `:packageName` placeholders. > > `:pluginId` can be obtained from your plugin page URL, like: `https://plugins.jetbrains.com/plugin/6954-kotlin` - in this case, it's `6954`. > @@ -112,9 +112,9 @@ Below are listed a few related to the IntelliJ SDK and plugins development provi **JetBrains IntelliJ Platform SDK Docs** -[![JetBrains IntelliJ Platform SDK Docs](https://jb.gg/badges/docs.svg)](http://www.jetbrains.org/intellij/sdk/docs) +[![JetBrains IntelliJ Platform SDK Docs](https://jb.gg/badges/docs.svg)](https://plugins.jetbrains.com/docs/intellij) ```markdown -[![JetBrains IntelliJ Platform SDK Docs](https://jb.gg/badges/docs.svg)](http://www.jetbrains.org/intellij/sdk/docs) +[![JetBrains IntelliJ Platform SDK Docs](https://jb.gg/badges/docs.svg)](https://plugins.jetbrains.com/docs/intellij) ``` **JetBrains Platform Slack** @@ -129,4 +129,4 @@ Below are listed a few related to the IntelliJ SDK and plugins development provi [![Twitter Follow](https://img.shields.io/twitter/follow/JBPlatform?style=flat)](https://twitter.com/JBPlatform) ```markdown [![Twitter Follow](https://img.shields.io/twitter/follow/JBPlatform?style=flat)](https://twitter.com/JBPlatform) -``` \ No newline at end of file +``` diff --git a/topics/basics/plugin_structure/plugin_configuration_file.md b/topics/basics/plugin_structure/plugin_configuration_file.md index 21c1dce03..eb5572944 100644 --- a/topics/basics/plugin_structure/plugin_configuration_file.md +++ b/topics/basics/plugin_structure/plugin_configuration_file.md @@ -76,7 +76,7 @@ When using Gradle, a number of metadata elements will be provided at build time messages.MyPluginBundle @@ -89,7 +89,7 @@ When using Gradle, a number of metadata elements will be provided at build time @@ -109,7 +109,7 @@ When using Gradle, a number of metadata elements will be provided at build time @@ -155,4 +155,4 @@ When using Gradle, a number of metadata elements will be provided at build time -``` \ No newline at end of file +```