plugin_extensions.md: Cleanup

This commit is contained in:
Karol Lewandowski 2024-07-25 09:56:03 +02:00
parent 8c7400c50b
commit d346d373e8

View File

@ -60,11 +60,11 @@ and one extension to access the `another.plugin.myExtensionPoint` extension poin
implementation="com.example.MyProjectTemplatesFactory"/>
</extensions>
<!--
<!--
Declare extensions to access extension points in a custom plugin "another.plugin".
The "myExtensionPoint" extension point has been declared using "beanClass"
and exposes custom properties "key" and "implementationClass".
-->
-->
<extensions defaultExtensionNs="another.plugin">
<myExtensionPoint
key="keyValue"
@ -125,9 +125,9 @@ Property names matching the following list will resolve to a fully qualified cla
A required parent type can be specified in the [extension point declaration](plugin_extension_points.md) via [`<with>`](plugin_configuration_file.md#idea-plugin__extensionPoints__extensionPoint__with):
```xml
<extensionPoint name="myExtension" beanClass="MyExtensionBean">
<with attribute="psiElementClass"
<with
attribute="psiElementClass"
implements="com.intellij.psi.PsiElement"/>
</extensionPoint>
```