Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
63f6a9a8
Commit
63f6a9a8
authored
Aug 02, 2016
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge wiki-specific Markdown in main Markdown file
parent
82c5fd0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
0 deletions
+82
-0
doc/user/project/markdown.md
doc/user/project/markdown.md
+82
-0
No files found.
doc/user/project/markdown.md
View file @
63f6a9a8
...
...
@@ -28,6 +28,13 @@
*
[
Line Breaks
](
#line-breaks
)
*
[
Tables
](
#tables
)
**[Wiki-Specific Markdown](#wiki-specific-markdown)**
*
[
Wiki - Direct page link
](
#wiki-direct-page-link
)
*
[
Wiki - Direct file link
](
#wiki-direct-file-link
)
*
[
Wiki - Hierarchical link
](
#wiki-hierarchical-link
)
*
[
Wiki - Root link
](
#wiki-root-link
)
**[References](#references)**
## GitLab Flavored Markdown (GFM)
...
...
@@ -692,6 +699,81 @@ By including colons in the header row, you can align the text within that column
| Cell 1 | Cell 2 | Cell 3 | Cell 4 | Cell 5 | Cell 6 |
| Cell 7 | Cell 8 | Cell 9 | Cell 10 | Cell 11 | Cell 12 |
## Wiki-specific Markdown
The following examples show how links inside wikis behave.
### Wiki - Direct page link
A link which just includes the slug for a page will point to that page,
_at the base level of the wiki_.
This snippet would link to a `documentation` page at the root of your wiki:
```
markdown
[
Link to Documentation
](
documentation
)
```
### Wiki - Direct file link
Links with a file extension point to that file, _relative to the current page_.
If this snippet was placed on a page at `<your_wiki>/documentation/related`,
it would link to `<your_wiki>/documentation/file.md`:
```
markdown
[
Link to File
](
file.md
)
```
### Wiki - Hierarchical link
A link can be constructed relative to the current wiki page using `./<page>`,
`../<page>`, etc.
- If this snippet was placed on a page at `<your_wiki>/documentation/main`,
it would link to `<your_wiki>/documentation/related`:
```
markdown
[
Link to Related Page
](
./related
)
```
- If this snippet was placed on a page at `<your_wiki>/documentation/related/content`,
it would link to `<your_wiki>/documentation/main`:
```
markdown
[
Link to Related Page
](
../main
)
```
- If this snippet was placed on a page at `<your_wiki>/documentation/main`,
it would link to `<your_wiki>/documentation/related.md`:
```
markdown
[
Link to Related Page
](
./related.md
)
```
- If this snippet was placed on a page at `<your_wiki>/documentation/related/content`,
it would link to `<your_wiki>/documentation/main.md`:
```
markdown
[
Link to Related Page
](
../main.md
)
```
### Wiki - Root link
A link starting with a `/` is relative to the wiki root.
- This snippet links to `<wiki_root>/documentation`:
```
markdown
[
Link to Related Page
](
/documentation
)
```
- This snippet links to `<wiki_root>/miscellaneous.md`:
```
markdown
[
Link to Related Page
](
/miscellaneous.md
)
```
## References
- This document leveraged heavily from the [Markdown-Cheatsheet](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment