Cleanup: update the old title format

This commit is contained in:
Karol Lewandowski 2023-02-17 11:17:52 +01:00
parent ff12e7ed34
commit ac2dcc722f
17 changed files with 33 additions and 33 deletions

View File

@ -1,4 +1,4 @@
[//]: # (title: 7. Annotator) # 7. Annotator
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->

View File

@ -1,6 +1,6 @@
[//]: # (title: 9. Completion Contributor) # 9. Completion Contributor
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,10 +1,10 @@
[//]: # (title: Custom Language Support Tutorial) # Custom Language Support Tutorial
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<link-summary>Tutorial for creating a .properties-like custom language.</link-summary> <link-summary>Tutorial for creating a .properties-like custom language.</link-summary>
In this tutorial we will add support for a [.properties](https://en.wikipedia.org/wiki/.properties) language and its usages within Java code. In this tutorial, we will add support for a [.properties](https://en.wikipedia.org/wiki/.properties) language and its usages within Java code.
> IntelliJ Platform support for custom languages is discussed in more depth in the [Custom Language Support](custom_language_support.md) section. > IntelliJ Platform support for custom languages is discussed in more depth in the [Custom Language Support](custom_language_support.md) section.
> Corresponding parts are linked under **Reference** on top of each page in this tutorial. > Corresponding parts are linked under **Reference** on top of each page in this tutorial.

View File

@ -1,6 +1,6 @@
[//]: # (title: 20. Documentation) # 20. Documentation
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,6 +1,6 @@
[//]: # (title: 11. Find Usages Provider) # 11. Find Usages Provider
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,6 +1,6 @@
[//]: # (title: 12. Folding Builder) # 12. Folding Builder
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,6 +1,6 @@
[//]: # (title: 16. Formatter) # 16. Formatter
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,6 +1,6 @@
[//]: # (title: 13. Go To Symbol Contributor) # 13. Go To Symbol Contributor
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,6 +1,6 @@
[//]: # (title: 3. Grammar and Parser) # 3. Grammar and Parser
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,6 +1,6 @@
[//]: # (title: 2. Language and File Type) # 2. Language and File Type
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,4 +1,4 @@
[//]: # (title: 4. Lexer and Parser Definition) # 4. Lexer and Parser Definition
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->

View File

@ -1,6 +1,6 @@
[//]: # (title: 1. Prerequisites) # 1. Prerequisites
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<include from="language_and_filetype.md" element-id="custom_language_tutorial_header"></include> <include from="language_and_filetype.md" element-id="custom_language_tutorial_header"></include>

View File

@ -1,6 +1,6 @@
[//]: # (title: 6. PSI Helpers and Utilities) # 6. PSI Helpers and Utilities
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,6 +1,6 @@
[//]: # (title: 19. Quick Fix) # 19. Quick Fix
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<include from="language_and_filetype.md" element-id="custom_language_tutorial_header"></include> <include from="language_and_filetype.md" element-id="custom_language_tutorial_header"></include>

View File

@ -1,6 +1,6 @@
[//]: # (title: 21. Spell Checking) # 21. Spell Checking
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<include from="language_and_filetype.md" element-id="custom_language_tutorial_header"></include> <include from="language_and_filetype.md" element-id="custom_language_tutorial_header"></include>

View File

@ -1,6 +1,6 @@
[//]: # (title: 15. Structure Aware Navigation Bar) # 15. Structure Aware Navigation Bar
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>

View File

@ -1,6 +1,6 @@
[//]: # (title: 14. Structure View Factory) # 14. Structure View Factory
<!-- 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. --> <!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
<tldr> <tldr>