Add missing <link-summary>

This commit is contained in:
Karol Lewandowski 2023-03-21 12:42:34 +01:00
parent 4836384873
commit dcdf7ad585
7 changed files with 27 additions and 16 deletions

View File

@ -1,6 +1,8 @@
[//]: # (title: Navigation Bar) <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. --> # Navigation Bar
<link-summary>Implementing custom navigation bars.</link-summary>
<tldr> <tldr>

View File

@ -1,6 +1,8 @@
[//]: # (title: Structure View) <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. --> # Structure View
<link-summary>Implementing a custom language file structure view showing the file elements tree.</link-summary>
<tldr> <tldr>

View File

@ -1,6 +1,8 @@
[//]: # (title: Facet) <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. --> # Facet
<link-summary>Introduction to facets representing a framework/technology configuration for a module.</link-summary>
<tldr> <tldr>

View File

@ -1,6 +1,8 @@
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# 2. Editor Coordinates System. Positions and Offsets # 2. Editor Coordinates System. Positions and Offsets
<!-- Copyright 2000-2023 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. --> <link-summary>Tutorial demonstrating how to access editor coordinate system.</link-summary>
The previous tutorial [Working with Text](working_with_text.md) demonstrated how to use actions to access a caret placed in a document open in an editor. The previous tutorial [Working with Text](working_with_text.md) demonstrated how to use actions to access a caret placed in a document open in an editor.
The examples replaced selected text in a document by using information about the caret. The examples replaced selected text in a document by using information about the caret.
@ -145,8 +147,6 @@ For the Visual Position the caret leans right, indicating its association with t
![Caret Column Position - Block Caret](caret_col_pos_block.png){width="800"} ![Caret Column Position - Block Caret](caret_col_pos_block.png){width="800"}
<br/>
Consider the Java snippet below, and use the `editor_basics` **Caret Position** action to report caret information at each step. Consider the Java snippet below, and use the `editor_basics` **Caret Position** action to report caret information at each step.
Be sure to use the keyboard shortcut to invoke the action so that the caret position is not disturbed. Be sure to use the keyboard shortcut to invoke the action so that the caret position is not disturbed.

View File

@ -1,6 +1,8 @@
[//]: # (title: 1. Working with Text) <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. --> # 1. Working with Text
<link-summary>Tutorial demonstrating how to retrieve and replace text in the editor.</link-summary>
This tutorial shows how to use actions to access a caret placed in a document open in an editor. This tutorial shows how to use actions to access a caret placed in a document open in an editor.
Using information about the caret, replace selected text in a document with a string. Using information about the caret, replace selected text in a document with a string.

View File

@ -1,6 +1,8 @@
[//]: # (title: Testing a Custom Language Plugin) <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. --> # Testing a Custom Language Plugin
<link-summary>Tutorial demonstrating how to develop tests for custom language plugin features.</link-summary>
> Please see [](testing_plugins.md) for a general introduction. > Please see [](testing_plugins.md) for a general introduction.
> >
@ -24,4 +26,3 @@ As an example, the plugin implemented in the [Custom Language Support Tutorial](
* [](commenter_test.md) * [](commenter_test.md)
* [](reference_test.md) * [](reference_test.md)
* [](documentation_test.md) * [](documentation_test.md)

View File

@ -1,6 +1,8 @@
[//]: # (title: Status Bar Widgets) <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<!-- Copyright 2000-2022 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. --> # Status Bar Widgets
<link-summary>Extending status bar with custom widgets providing information about the current file, project, IDE, etc.</link-summary>
<tldr> <tldr>