diff options
author | Philippe Perrin <philippe.perrin@sonarsource.com> | 2020-09-02 16:59:05 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-09-18 20:07:14 +0000 |
commit | 37a3a7ac753b6f8133b80bc3b8ab20cd7068d402 (patch) | |
tree | dcdeabcb8e5247c4854de2058300090d4ce5dd5c /server/sonar-docs/README.md | |
parent | 0605a508ab145e8bac03c3ce6e96c4ec44febb70 (diff) | |
download | sonarqube-37a3a7ac753b6f8133b80bc3b8ab20cd7068d402.tar.gz sonarqube-37a3a7ac753b6f8133b80bc3b8ab20cd7068d402.zip |
SONAR-13643 Remove the version history of a language analyzer from its documentation page
Diffstat (limited to 'server/sonar-docs/README.md')
-rw-r--r-- | server/sonar-docs/README.md | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/server/sonar-docs/README.md b/server/sonar-docs/README.md index f0f21aff683..acd52390717 100644 --- a/server/sonar-docs/README.md +++ b/server/sonar-docs/README.md @@ -301,34 +301,17 @@ Note that an iframe is **not** a self-closing tag. This means that the following ``` -#### Dynamic Plugin/Scanner Version Info +#### Dynamic Scanner Version Info -You can dynamically include a plugin/scanner version block to any page, using the following special tag: - -For static documentation, use: - -```html -<!-- update_center:{PLUGIN/SCANNER}_KEY --> -``` - -For embedded documentation, use: -```html -<update-center updatecenterkey="{PLUGIN/SCANNER}_KEY"></update-center> -``` - -For example, for Sonar Java, use: +You can dynamically include a scanner version block to any page, using the following special tag: ```html -<!-- update_center:java --> -or -<update-center updatecenterkey="java"></update-center> +<update-center updatecenterkey="SCANNER_KEY"></update-center> ``` -For gradle's scanner, use: +For example, for gradle's scanner, use: ```html -<!-- update_center:sonargradle --> -or <update-center updatecenterkey="sonargradle"></update-center> ``` |