From 2a50faa830ba8055a48b7b5e7f65a19d40384a1d Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Tue, 28 Feb 2023 10:21:46 +0100 Subject: [PATCH] Add missing --- topics/basics/architectural_overview/uast.md | 6 ++++-- topics/intellij-sdk-docs-original_CONTRIBUTING.md | 6 ++++-- topics/reference_guide/project_model/sdk.md | 6 ++++-- topics/tutorials/action_system.md | 6 ++++-- topics/tutorials/action_system/grouping_action.md | 6 ++++-- .../tutorials/action_system/working_with_custom_actions.md | 6 ++++-- topics/user_interface_components/dialog_wrapper.md | 6 ++++-- 7 files changed, 28 insertions(+), 14 deletions(-) diff --git a/topics/basics/architectural_overview/uast.md b/topics/basics/architectural_overview/uast.md index 7d1c0ae32..f065a0c0a 100644 --- a/topics/basics/architectural_overview/uast.md +++ b/topics/basics/architectural_overview/uast.md @@ -1,6 +1,8 @@ -[//]: # (title: UAST - Unified Abstract Syntax Tree) + - +Handle different JVM languages syntax trees with a single implementation. + +# UAST - Unified Abstract Syntax Tree UAST (Unified Abstract Syntax Tree) is an abstraction layer on the [PSI](psi_elements.md) of different programming languages targeting the JVM (Java Virtual Machine). It provides a unified API for working with common language elements like classes and method declarations, literal values, and control flow operators. diff --git a/topics/intellij-sdk-docs-original_CONTRIBUTING.md b/topics/intellij-sdk-docs-original_CONTRIBUTING.md index 18dfd8220..5c5880210 100644 --- a/topics/intellij-sdk-docs-original_CONTRIBUTING.md +++ b/topics/intellij-sdk-docs-original_CONTRIBUTING.md @@ -1,6 +1,8 @@ -[//]: # (title: Contributing to the IntelliJ Platform SDK) + - +Basic rules on contributing to the IntelliJ Platform SDK documentation. + +# Contributing to the IntelliJ Platform SDK This document describes our contribution guidelines for the open-source IntelliJ Platform SDK documentation and sample code. Before you begin contributing content to the SDK, please read this page thoroughly as well as the [Code of Conduct](intellij-sdk-docs-original_CODE_OF_CONDUCT.md) and [License](https://github.com/JetBrains/intellij-sdk-docs/blob/main/LICENSE.txt) documents. diff --git a/topics/reference_guide/project_model/sdk.md b/topics/reference_guide/project_model/sdk.md index 3c60c2c32..e670f239a 100644 --- a/topics/reference_guide/project_model/sdk.md +++ b/topics/reference_guide/project_model/sdk.md @@ -1,6 +1,8 @@ -[//]: # (title: SDK) + - +Configuring and getting information about a project SDK. + +# SDK diff --git a/topics/tutorials/action_system.md b/topics/tutorials/action_system.md index 663f76666..b3b2def87 100644 --- a/topics/tutorials/action_system.md +++ b/topics/tutorials/action_system.md @@ -1,6 +1,8 @@ -[//]: # (title: Actions Tutorial) + - +Tutorial on creating and grouping actions. + +# Actions Tutorial This tutorial leads you through a series of steps which show how to create, register, and customize custom actions and action groups. By registering actions, you can add your own menu items, toolbar buttons and keyboard shortcuts to the IDE user interface. diff --git a/topics/tutorials/action_system/grouping_action.md b/topics/tutorials/action_system/grouping_action.md index a7286b4f2..a6fc23067 100644 --- a/topics/tutorials/action_system/grouping_action.md +++ b/topics/tutorials/action_system/grouping_action.md @@ -1,6 +1,8 @@ -[//]: # (title: Grouping Actions) + - +Organizing actions in custom groups and attaching them to the existing ones. + +# Grouping Actions If an implementation requires several actions, or there are simply too many actions that overload the menu, the actions can be placed into groups. This tutorial demonstrates adding an action to an existing group, creating a new action group, and action groups with a variable number of actions. diff --git a/topics/tutorials/action_system/working_with_custom_actions.md b/topics/tutorials/action_system/working_with_custom_actions.md index df2dc151f..d00622a0b 100644 --- a/topics/tutorials/action_system/working_with_custom_actions.md +++ b/topics/tutorials/action_system/working_with_custom_actions.md @@ -1,6 +1,8 @@ -# Creating Actions + - +Implementing and registering custom actions. + +# Creating Actions Plugins can add actions to existing IDE menus and toolbars, as well as add new menus and toolbars. The IntelliJ Platform calls the actions of plugins in response to user interactions with the IDE. diff --git a/topics/user_interface_components/dialog_wrapper.md b/topics/user_interface_components/dialog_wrapper.md index 2c7afe1e6..acd7fea3e 100644 --- a/topics/user_interface_components/dialog_wrapper.md +++ b/topics/user_interface_components/dialog_wrapper.md @@ -1,6 +1,8 @@ -[//]: # (title: Dialogs) + - +Creating, showing, and getting the input provided by users in dialogs. + +# Dialogs