mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
markdown: fix links containing %
This commit is contained in:
parent
cfa32760fd
commit
ea51a85748
@ -71,7 +71,7 @@ Below are listed a few related to the IntelliJ SDK and plugins development provi
|
|||||||
|
|
||||||
**IntelliJ Plugin Stars Rating**
|
**IntelliJ Plugin Stars Rating**
|
||||||
|
|
||||||

|
{interpolate-variables="false"}
|
||||||
```markdown
|
```markdown
|
||||||

|

|
||||||
```
|
```
|
||||||
|
@ -95,7 +95,7 @@ This FAQ is a topical index of questions that have been asked (and answered) on
|
|||||||
* [How do I get the cursor position in the current editor?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206794335-How-to-get-cursor-position-in-the-current-editor-)
|
* [How do I get the cursor position in the current editor?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206794335-How-to-get-cursor-position-in-the-current-editor-)
|
||||||
* [How do I clear the read-only status of a file?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206142039-Clear-read-only-status)
|
* [How do I clear the read-only status of a file?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206142039-Clear-read-only-status)
|
||||||
* [How do I show a popup hint in an editor?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206146719-HintManager-API-question)
|
* [How do I show a popup hint in an editor?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206146719-HintManager-API-question)
|
||||||
* [How do I create live template-like red box edit regions in an editor?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206800165-How-to-%C3%A7reate-live-template-like-red-box-edit-regions-in-an-editor)
|
* [How do I create live template-like red box edit regions in an editor?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206800165-How-to-%C3%A7reate-live-template-like-red-box-edit-regions-in-an-editor){interpolate-variables="false"}
|
||||||
* [How can I show an editor with error highlighting in a tool window?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206146679-Error-highlighting-in-Editors)
|
* [How can I show an editor with error highlighting in a tool window?](https://intellij-support.jetbrains.com/hc/en-us/community/posts/206146679-Error-highlighting-in-Editors)
|
||||||
|
|
||||||
## Inspections
|
## Inspections
|
||||||
|
@ -65,6 +65,7 @@ For example, `## Introduction` gets the ID of `introduction`, and can be linked
|
|||||||
#### General Links
|
#### General Links
|
||||||
General Markdown links have the default Markdown link style:
|
General Markdown links have the default Markdown link style:
|
||||||
* `[Gradle](https://gradle.org)`{disable-links} ([Gradle](https://gradle.org)) links to an external site, such as companies, articles, etc.
|
* `[Gradle](https://gradle.org)`{disable-links} ([Gradle](https://gradle.org)) links to an external site, such as companies, articles, etc.
|
||||||
|
If URL contains `%` character, append `{interpolate-variables="false"}`.
|
||||||
* Linking to pages within the SDK documentation:
|
* Linking to pages within the SDK documentation:
|
||||||
`[Page Title](page.md)`{disable-links} links to an SDK doc page (all located under <path>/topics</path>).
|
`[Page Title](page.md)`{disable-links} links to an SDK doc page (all located under <path>/topics</path>).
|
||||||
Note that the extension is `.md`, _NOT_ `.html`.
|
Note that the extension is `.md`, _NOT_ `.html`.
|
||||||
|
@ -9,7 +9,7 @@ It is intended to answer why, when and how to use it.
|
|||||||
|
|
||||||
## Rationale
|
## Rationale
|
||||||
|
|
||||||
So, what is messaging in the IntelliJ Platform and why do we need it? Basically, its implementation of [Publisher Subscriber Pattern](https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern) that provides additional features like _broadcasting on hierarchy_ and special _nested events_ processing (_nested event_ here is a situation when new event is fired (directly or indirectly) from the callback of another event).
|
So, what is messaging in the IntelliJ Platform and why do we need it? Basically, its implementation of [Publisher Subscriber Pattern](https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern){interpolate-variables="false"} that provides additional features like _broadcasting on hierarchy_ and special _nested events_ processing (_nested event_ here is a situation when new event is fired (directly or indirectly) from the callback of another event).
|
||||||
|
|
||||||
## Design
|
## Design
|
||||||
|
|
||||||
@ -176,7 +176,7 @@ Let's see what happens if someone sends a message to the target topic:
|
|||||||
|
|
||||||
### Relief Listeners Management
|
### Relief Listeners Management
|
||||||
|
|
||||||
Messaging infrastructure is very light-weight, so, it's possible to reuse it at local sub-systems in order to relieve [Subscribers](https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern) construction.
|
Messaging infrastructure is very light-weight, so, it's possible to reuse it at local sub-systems in order to relieve [Subscribers](https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern){interpolate-variables="false"} construction.
|
||||||
Let's see what is necessary to do then:
|
Let's see what is necessary to do then:
|
||||||
|
|
||||||
1. Define business interface to work with;
|
1. Define business interface to work with;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user