diff --git a/topics/tutorials/live_templates/providing_live_templates.md b/topics/tutorials/live_templates/providing_live_templates.md index f1059770d..bfdfbb7e3 100644 --- a/topics/tutorials/live_templates/providing_live_templates.md +++ b/topics/tutorials/live_templates/providing_live_templates.md @@ -103,7 +103,7 @@ Depending on the version of the IntelliJ Platform, different steps are used to c -Using the `com.intellij.defaultLiveTemplates` and `com.intellij.liveTemplateContext` extension points, register the implementations with the IntelliJ Platform. +Using the and , register the implementations with the IntelliJ Platform. The `file` attribute in specifies `path/filename` under the src/main/resources folder. Specify required `contextId` attribute in instead of [`TemplateContextType`](%gh-ic%/platform/analysis-api/src/com/intellij/codeInsight/template/TemplateContextType.java) constructor (existing declarations will continue working). @@ -121,7 +121,7 @@ Specify required `contextId` attribute in -Using the `com.intellij.defaultLiveTemplates` and `com.intellij.liveTemplateContext` extension points, register the implementations with the IntelliJ Platform. +Using the and , register the implementations with the IntelliJ Platform. The `file` attribute in the specifies `path/filename` under the src/main/resources folder. ```xml @@ -159,7 +159,7 @@ final class MarkdownTemplateProvider implements DefaultLiveTemplatesProvider { } ``` -Using the `com.intellij.defaultLiveTemplatesProvider` and `com.intellij.liveTemplateContext` extension points, register the implementations with the IntelliJ Platform. +Using the and , register the implementations with the IntelliJ Platform. ```xml