diff --git a/topics/appendix/api_notable/api_notable_list_2023.md b/topics/appendix/api_notable/api_notable_list_2023.md
index 59551a86c..980304a10 100644
--- a/topics/appendix/api_notable/api_notable_list_2023.md
+++ b/topics/appendix/api_notable/api_notable_list_2023.md
@@ -16,6 +16,9 @@ _Early Access Program_ (EAP) releases of upcoming versions are available [here](
Check presence of JVM library
: Use [dedicated API](psi_cookbook.md#how-do-i-check-the-presence-of-a-jvm-library) to check presence via class FQN or Maven coordinates.
+Inspection description: code snippets highlighting
+: Embedded code is shown with [syntax highlighting](code_inspections.md#code-snippets).
+
## 2023.1
API for quick documentation
diff --git a/topics/tutorials/code_inspections.md b/topics/tutorials/code_inspections.md
index 2004722a6..94b0241c2 100644
--- a/topics/tutorials/code_inspections.md
+++ b/topics/tutorials/code_inspections.md
@@ -24,6 +24,7 @@ The [comparing_string_references_inspection](%gh-sdk-samples%/comparing_string_r
The inspection reports when the `==` or `!=` operator is used between String expressions.
It illustrates the components for a custom inspection plugin:
+
* Describing an [inspection](#plugin-configuration-file) in the plugin configuration file.
* Implementing a [local inspection class](#inspection-implementation-java-class) to inspect Java code in the editor.
* Creating a [visitor](#visitor-implementation-class) to traverse the PSI tree of the Java file being edited, inspecting for problematic syntax.
@@ -48,6 +49,7 @@ The details of the `comparing_string_references_inspection` implementation illus
The `comparing_string_references_inspection` is described as a `com.intellij.localInspection` extension point in the `comparing_string_references_inspection` plugin configuration ([`plugin.xml`](%gh-sdk-samples%/comparing_string_references_inspection/src/main/resources/META-INF/plugin.xml)) file.
There exist two types of inspection extensions:
+
* The `com.intellij.localInspection` extension point is used for inspections that operate on one file at a time, and also operate "on-the-fly" as the user edits the file.
* The `com.intellij.globalInspection` extension point is used for inspections that operate across multiple files, and the associated fix might, for example, refactor code between files.
@@ -67,6 +69,7 @@ Examining the class hierarchy for `LocalInspectionTool` shows that the IntelliJ
One of these classes is a good basis for a new inspection implementation, but a bespoke implementation can also be based directly on `LocalInspectionTool`.
The primary responsibilities of the inspection implementation class are to provide:
+
* A `PsiElementVisitor` object to traverse the PSI tree of the file being inspected.
* A `LocalQuickFix` class to fix an identified problem (optional).
* An options panel to be displayed in the
+
+ // code snippet
+
+
+```
+
+The language will be set according to the [inspection's registration](#plugin-configuration-file) `language` attribute.
+If required (e.g., when targeting [UAST](uast.md)), it can be specified explicitly via `...
`.
+
+#### Settings Link
+
+To open related [settings](settings.md) directly from the inspection description, add a link with `settings://$CONFIGURABLE_ID$`, optionally followed by `?$SEARCH_STRING$` to pre-select UI element:
+
+```html
+See Includes tab in Settings | Editor | File and Code Templates to configure.
+```
### Inspection Test
@@ -152,4 +180,5 @@ return (str1 == str2);
```java
return (str1.equals(str2));
```
+