mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 18:27:49 +08:00
[webhelp] add language identifier to code blocks, cleanup. IJSDK-903
This commit is contained in:
parent
4541700fac
commit
d9912aa779
@ -34,24 +34,24 @@ Below there are listed a few ones related to the IntelliJ SDK and plugins develo
|
|||||||
**IntelliJ Plugins**
|
**IntelliJ Plugins**
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
**ReSharper Plugins**
|
**ReSharper Plugins**
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
@ -61,14 +61,14 @@ Below there are listed a few ones related to the IntelliJ SDK and plugins develo
|
|||||||
**IntelliJ Plugin Numeric Rating**
|
**IntelliJ Plugin Numeric Rating**
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
**IntelliJ Plugin Stars Rating**
|
**IntelliJ Plugin Stars Rating**
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
@ -78,26 +78,26 @@ Below there are listed a few ones related to the IntelliJ SDK and plugins develo
|
|||||||
**IntelliJ Plugins**
|
**IntelliJ Plugins**
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
**ReSharper Plugins**
|
**ReSharper Plugins**
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
**ReSharper Plugins (incl. pre-releases)**
|
**ReSharper Plugins (incl. pre-releases)**
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
@ -107,27 +107,27 @@ Below there are listed a few ones related to the IntelliJ SDK and plugins develo
|
|||||||
**GitHub Actions Workflow**
|
**GitHub Actions Workflow**
|
||||||
|
|
||||||

|

|
||||||
```
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
|
||||||
**JetBrains IntelliJ Platform SDK Docs**
|
**JetBrains IntelliJ Platform SDK Docs**
|
||||||
|
|
||||||
[](http://www.jetbrains.org/intellij/sdk/docs)
|
[](http://www.jetbrains.org/intellij/sdk/docs)
|
||||||
```
|
```markdown
|
||||||
[](http://www.jetbrains.org/intellij/sdk/docs)
|
[](http://www.jetbrains.org/intellij/sdk/docs)
|
||||||
```
|
```
|
||||||
|
|
||||||
**JetBrains Platform Slack**
|
**JetBrains Platform Slack**
|
||||||
|
|
||||||
[](https://plugins.jetbrains.com/slack)
|
[](https://plugins.jetbrains.com/slack)
|
||||||
```
|
```markdown
|
||||||
[](https://plugins.jetbrains.com/slack)
|
[](https://plugins.jetbrains.com/slack)
|
||||||
```
|
```
|
||||||
|
|
||||||
**@JBPlatform Twitter**
|
**@JBPlatform Twitter**
|
||||||
|
|
||||||
[](https://twitter.com/JBPlatform)
|
[](https://twitter.com/JBPlatform)
|
||||||
```
|
```markdown
|
||||||
[](https://twitter.com/JBPlatform)
|
[](https://twitter.com/JBPlatform)
|
||||||
```
|
```
|
||||||
|
@ -12,7 +12,7 @@ The plugin `jar` file must contain:
|
|||||||
### Plugin Without Dependencies
|
### Plugin Without Dependencies
|
||||||
A plugin consisting of a single `.jar` file is placed in the `/plugins` directory.
|
A plugin consisting of a single `.jar` file is placed in the `/plugins` directory.
|
||||||
|
|
||||||
```
|
```text
|
||||||
.IntelliJIDEAx0/
|
.IntelliJIDEAx0/
|
||||||
└── plugins
|
└── plugins
|
||||||
└── sample.jar
|
└── sample.jar
|
||||||
@ -31,7 +31,7 @@ The plugin `.jar` file is placed in the `/lib` folder under the plugin's "root"
|
|||||||
|
|
||||||
All jars from the `/lib` folder are automatically added to the classpath (see also [Plugin Class Loaders](plugin_class_loaders.md)).
|
All jars from the `/lib` folder are automatically added to the classpath (see also [Plugin Class Loaders](plugin_class_loaders.md)).
|
||||||
|
|
||||||
```
|
```text
|
||||||
.IntelliJIDEAx0/
|
.IntelliJIDEAx0/
|
||||||
└── plugins
|
└── plugins
|
||||||
└── sample
|
└── sample
|
||||||
|
@ -12,8 +12,8 @@ Under `test`, create the `java` folder for test source code, and the folder `tes
|
|||||||
```text
|
```text
|
||||||
└── src
|
└── src
|
||||||
├── main
|
├── main
|
||||||
│ ├── java
|
│ ├── java
|
||||||
│ └── resources
|
│ └── resources
|
||||||
└── test
|
└── test
|
||||||
├── java
|
├── java
|
||||||
└── testData
|
└── testData
|
||||||
|
Loading…
x
Reference in New Issue
Block a user