Skip to content

Commit

Permalink
Update generated descriptor pages: whitespaces revert (#1416)
Browse files Browse the repository at this point in the history
Co-authored-by: karollewandowski <[email protected]>
  • Loading branch information
github-actions[bot] and karollewandowski authored Jan 17, 2025
1 parent d84424a commit e1e20c1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions topics/basics/plugin_structure/plugin_configuration_file.md
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ Attributes
`order`.
<br/>
To not clash with other plugins defining extensions with the same identifier,
consider prepending the identifier with a prefix related to the plugin [`<id>`](#idea-plugin__id) or
consider prepending the identifier with a prefix related to the plugin [`<id>`](#idea-plugin__id) or
[`<name>`](#idea-plugin__name), for example, `id="com.example.myplugin.myExtension"`.
- `order` _(optional)_<br/>
Allows for ordering the extension relative to other instances of the same extension point.
Expand All @@ -612,7 +612,7 @@ Attributes
- `mac`
- `unix`
- `windows`

For example, `os="windows"` registers the extension on Windows only.

### `extensionPoints`
Expand Down Expand Up @@ -734,7 +734,7 @@ Example
An extension point which restricts the type provided in a `myClass` attribute to be an instance
of `com.example.ParentType`, and the type provided in a `someClass` element to be an instance
of `java.lang.Comparable`:

```xml
<extensionPoint
name="myExtension"
Expand All @@ -747,18 +747,18 @@ Example
implements="java.lang.Comparable"/>
</extensionPoint>
```

When using the above extension point, an implementation could be registered as follows:

```xml
<myExtension ...
myClass="com.example.MyCustomType">
<someClass>com.example.MyComparable</someClass>
</myExtension>
```

where:

- `com.example.MyCustomType` must be a subtype of `com.example.ParentType`
- `com.example.MyComparable` must be a subtype of `java.lang.Comparable`

Expand Down Expand Up @@ -1270,7 +1270,7 @@ Attributes
- `ref` _(**required**)_<br/>
The ID of the action to add to a group.
- `id` _(optional)_<br/>
**_Deprecated_**: Use `ref` instead.
**_Deprecated_**: Use `ref` instead.

The ID of the action to add to a group.

Expand Down

0 comments on commit e1e20c1

Please sign in to comment.