diff --git a/topics/reference_guide/custom_language_support/language_injection.md b/topics/reference_guide/custom_language_support/language_injection.md index 290ef2c94..e067b4116 100644 --- a/topics/reference_guide/custom_language_support/language_injection.md +++ b/topics/reference_guide/custom_language_support/language_injection.md @@ -1,6 +1,6 @@ [//]: # (title: Language Injection) - + Language injection is the way the IntelliJ Platform handles different languages within the same source file. Well-known examples are: @@ -191,7 +191,7 @@ Register the implementation in your plugin.xml: ``` If you want more control over how the injection should be done then implement the `com.intellij.languageInjectionPerformer` EP which allows for complex language injections, e.g. for concatenation or interpolation of strings. -If it is not implemented then the +If it is not implemented, then the [`DefaultLanguageInjectionPerformer`](upsource:///plugins/IntelliLang/src/org/intellij/plugins/intelliLang/inject/DefaultLanguageInjectionPerformer.java) will be used.