diff options
author | Winnie <gitlab@winniehell.de> | 2016-10-21 20:18:03 +0000 |
---|---|---|
committer | Winnie <gitlab@winniehell.de> | 2016-10-21 20:18:03 +0000 |
commit | 94ceadb4a32a4a5128d43983206518d3159354e0 (patch) | |
tree | ab63590d7c893d2c27e5a2ade82423a4c967ccf1 | |
parent | baec0353df64d75455aa90f7f2f6efbf7f2f6920 (diff) | |
download | gitlab-ce-94ceadb4a32a4a5128d43983206518d3159354e0.tar.gz |
Document link syntax introduced by !5586document-absolute-links
-rw-r--r-- | doc/user/markdown.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/user/markdown.md b/doc/user/markdown.md index 56e5b802a52..7a7a0b864bd 100644 --- a/doc/user/markdown.md +++ b/doc/user/markdown.md @@ -501,6 +501,10 @@ There are two ways to create links, inline-style and reference-style. [I'm a reference-style link][Arbitrary case-insensitive reference text] [I'm a relative reference to a repository file](LICENSE) + + [I am an absolute reference within the repository](/doc/user/markdown.md) + + [I link to the Milestones page](/../milestones) [You can use numbers for reference-style link definitions][1] @@ -518,6 +522,10 @@ There are two ways to create links, inline-style and reference-style. [I'm a relative reference to a repository file](LICENSE)[^1] +[I am an absolute reference within the repository](/doc/user/markdown.md) + +[I link to the Milestones page](/../milestones) + [You can use numbers for reference-style link definitions][1] Or leave it empty and use the [link text itself][] |