Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-08 12:09:41 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-08 12:09:41 +0300
commit707742e59ca57d1f2ea00d65fa35a7b9a5ded398 (patch)
tree8dcb287cd941eab2acf6d62de519d1e915686175 /doc/user/markdown.md
parenta0834ebcaa12d126a20e07b6502121e1dc58c9b9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/user/markdown.md')
-rw-r--r--doc/user/markdown.md22
1 files changed, 1 insertions, 21 deletions
diff --git a/doc/user/markdown.md b/doc/user/markdown.md
index f2633749cd3..15bb77efa17 100644
--- a/doc/user/markdown.md
+++ b/doc/user/markdown.md
@@ -431,7 +431,7 @@ GFM recognizes the following:
| merge request | `!123` | `namespace/project!123` | `project!123` |
| snippet | `$123` | `namespace/project$123` | `project$123` |
| epic **(ULTIMATE)** | `&123` | `group1/subgroup&123` | |
-| vulnerability **(ULTIMATE)** *(1)* | `[vulnerability:123]` | `[vulnerability:namespace/project/123]` | `[vulnerability:project/123]` |
+| vulnerability **(ULTIMATE)** | `[vulnerability:123]` | `[vulnerability:namespace/project/123]` | `[vulnerability:project/123]` |
| label by ID | `~123` | `namespace/project~123` | `project~123` |
| one-word label by name | `~bug` | `namespace/project~bug` | `project~bug` |
| multi-word label by name | `~"feature request"` | `namespace/project~"feature request"` | `project~"feature request"` |
@@ -445,26 +445,6 @@ GFM recognizes the following:
| repository file line references | `[README](doc/README#L13)` | | |
| [alert](../operations/incident_management/alerts.md) | `^alert#123` | `namespace/project^alert#123` | `project^alert#123` |
-1. [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/281035) in GitLab 13.6.
-
- The Vulnerability special references feature is under development but ready for production use.
- It is deployed behind a feature flag that is **disabled by default**.
- [GitLab administrators with access to the GitLab Rails console](../administration/feature_flags.md)
- can opt to enable it for your instance.
- It's disabled on GitLab.com.
-
- To disable it:
-
- ```ruby
- Feature.disable(:vulnerability_special_references)
- ```
-
- To enable it:
-
- ```ruby
- Feature.enable(:vulnerability_special_references)
- ```
-
For example, referencing an issue by using `#123` will format the output as a link
to issue number 123 with text `#123`. Likewise, a link to issue number 123 will be
recognized and formatted with text `#123`.