Project

General

Profile

RedmineTextFormattingRedmineLinks » History » Version 8

İsmail Sahillioğlu, 2025-06-25 15:30
Add undocumented Issues features.

1 1 Hiroo Hayashi
Redmine allows hyperlinking between resources (wiki pages, issues, documents...) from anywhere text formatting is used.
2
3
Wiki links:
4
5
* *[[Guide]]* displays a link to the page named 'Guide': [[Guide]]
6
* *[[Guide#further-reading]]* takes you to the anchor "further-reading". Headings get automatically assigned anchors so that you can refer to them: [[Guide#further-reading]]
7
* *[[Guide|User manual]]* displays a link to the same page but with different text: [[Guide|User manual]]
8
* *[[Guide#User-guide|User guide]]* displays a link to the header on the same page with different text: [[Guide#User-guide|User guide]]
9
10
You can also link to pages of another project's wiki (using the project identifier):
11
12
* *[[sandbox:some page]]* displays a link to the page named 'Some page' of the Sandbox wiki
13
* *[[sandbox:]]* displays a link to the Sandbox wiki main page
14
15
Wiki links are displayed in red if the page doesn't exist yet, eg: [[Nonexistent page]].
16
17
Links to other resources:
18
19
* Issues:
20
21
  * *!#124* (link to an issue: displays #124, link is striked-through if the issue is closed)
22
  * *!#124-6*, or *!#124#note-6* (link to an issue note: displays #124-6, or #124#note-6)
23 8 İsmail Sahillioğlu
  * Link to an issue including tracker name and subject: *!##124* (displays ##124)
24
  * Link to an issue note within the same issue: *!#note-6*
25 1 Hiroo Hayashi
26
* Documents:
27
28
  * *!document#17* (link to document with id 17)
29
  * *!document:Greetings* (link to the document with title "Greetings")
30
  * *!document:"Some document"* (double quotes can be used when document title contains spaces)
31
  * *!sandbox:document:"Some document"* (link to a document with title "Some document" in project identifier "sandbox")
32
33
* Versions:
34
35
  * *!version#3* (link to version with id 3)
36
  * *!version:1.0.0* (link to version named "1.0.0")
37
  * *!version:"1.0 beta 2"* (double quotes can be used when version name contains spaces)
38
  * *!sandbox:version:1.0.0* (link to version "1.0.0" in the project identifier "sandbox")
39
40
* Attachments:
41
  
42
  * *!attachment:file.zip* (link to the attachment of the current object named file.zip)
43
  * *!attachment:"file name.zip"* (double quotes can be used when the filename contains non word characters)
44
  * For now, attachments of the current object can be referenced only (if you're on an issue, it's possible to reference attachments of this issue only)
45
46
* Changesets:
47
48
  * *!r758* (link to a changeset, displays r758)
49
  * *!commit:c6f4d0fd* (link to a changeset with a non-numeric hash)
50
  * *!svn1|r758* (link to a changeset of a specific repository, for projects with multiple repositories)
51
  * *!commit:hg|c6f4d0fd* (link to a changeset with a non-numeric hash of a specific repository)
52
  * *!sandbox:r758* (link to a changeset of another project)
53
  * *!sandbox:commit:c6f4d0fd* (link to a changeset with a non-numeric hash of another project identifier)
54
55
* Repository files:
56
57
  * *!source:some/file* (link to the file located at /some/file in the project's repository)
58
  * *!source:"some file"* (link to the file with non word characters in the path)
59
  * *!source:some/file@52* (link to the file's revision 52)
60 3 Vojtěch Srdečný
  * *!source:some/file@master* (link to the file in branch _master_)
61 1 Hiroo Hayashi
  * *!source:some/file#L120* (link to line 120 of the file)
62
  * *!source:some/file@52#L120* (link to line 120 of the file's revision 52)
63
  * *!source:repo_identifier|some/file* (link to a file of a specific repository, for projects with multiple repositories)
64
  * *!sandbox:source:some/file* (link to the file in the project identifier "sandbox")
65 5 Mischa The Evil
  * *!sandbox:source:repo_identifier|some/file* (link to the file, with non word characters in the path, of a specific repository in the project identifier "sandbox")
66 1 Hiroo Hayashi
  * *!export:some/file* (force the download of the file)
67
 
68
* Forums:
69
70
  * *!forum#2* (link to forum with id 2)
71
  * *!forum:Discussion* (link to forum with name "Discussion")
72
  * *!forum:"Help and more"* (double quotes can be used when forum name contains spaces)
73
74
* Forum messages:
75
76
  * *!message#1218* (link to message with id 1218)
77
78
* News items
79
80
  * *!news#1* (link to news item with id 1)
81
  * *!news:Greetings* (link to news item with name "Greetings")
82
  * *!news:"eCookbook first release !"* (double quotes can be used when news item name contains spaces)
83
84
* Projects:
85
86
  * *!project#3* (link to project with id 3)
87
  * *!project:someproject* (link to project with name "someproject")
88
  * *!project:"Multiple words project"* (double quotes can be used when project name contains spaces)
89
90 2 Davide Cavarretta
* Users:
91
92 7 Mischa The Evil
  * *user#2* (link to user with id 2)
93 6 Mischa The Evil
  * *user:jsmith* (Link to user with login "jsmith")
94 7 Mischa The Evil
  * *@jsmith* (Link to user with login "jsmith")
95 2 Davide Cavarretta
96
97
98 1 Hiroo Hayashi
Escaping:
99
100
* You can prevent Redmine links from being parsed by preceding them with an exclamation mark: !