Project

General

Profile

RedmineTextFormatting » History » Version 69

Mikail Borovinskih, 2011-12-22 08:35
External image linke to wiki page of redmine

1 68 Jean-Philippe Lang
h1. Text formatting
2 1 Jean-Philippe Lang
3
{{>TOC}}
4
5
h2. Links
6
7 6 Jean-Philippe Lang
h3. Redmine links
8
9 68 Jean-Philippe Lang
Redmine allows hyperlinking between resources (issues, changesets, wiki pages...) from anywhere text formatting is used.
10 1 Jean-Philippe Lang
11 8 Jean-Philippe Lang
* Link to an issue: *!#124* (displays #124, link is striked-through if the issue is closed)
12 6 Jean-Philippe Lang
* Link to a changeset: *!r758* (displays r758)
13 68 Jean-Philippe Lang
* Link to a changeset with a non-numeric hash: *commit:c6f4d0fd* (displays c6f4d0fd).
14 1 Jean-Philippe Lang
15 6 Jean-Philippe Lang
Wiki links:
16 1 Jean-Philippe Lang
17 3 Jean-Philippe Lang
* *[[Guide]]* displays a link to the page named 'Guide': [[Guide]]
18 51 Graham King
* *[[Guide|User manual]]* displays a link to the same page but with different text: [[Guide|User manual]]
19
* *[[Guide#User-guide|User guide]]* displays a link to the header on the same page with different text: [[Guide#User-guide|User guide]]
20 1 Jean-Philippe Lang
21 51 Graham King
You can also link to pages of another project's wiki:
22 3 Jean-Philippe Lang
23 1 Jean-Philippe Lang
* *[[sandbox:some page]]* displays a link to the page named 'Some page' of the Sandbox wiki
24
* *[[sandbox:]]* displays a link to the Sandbox wiki main page
25
26
Wiki links are displayed in red if the page doesn't exist yet, eg: [[Nonexistent page]].
27
28 32 Jean-Philippe Lang
Links to others resources:
29 6 Jean-Philippe Lang
30
* Documents:
31
32
  * *!document#17* (link to document with id 17)
33
  * *!document:Greetings* (link to the document with title "Greetings")
34
  * *!document:"Some document"* (double quotes can be used when document title contains spaces)
35 43 Markus Valle-Klann
  * *!document:some_project:"Some document"* (link to a document in a different project)
36 6 Jean-Philippe Lang
37
* Versions:
38
39
  * *!version#3* (link to version with id 3)
40
  * *!version:1.0.0* (link to version named "1.0.0")
41
  * *!version:"1.0 beta 2"*
42
43 44 Anh Tu Sam
* Projects:
44
45
  * *project#<id>* (link to project with <id>)
46
  * *!project:<identifier>*
47
  * *!project:<name>*
48
49 1 Jean-Philippe Lang
* Attachments:
50 6 Jean-Philippe Lang
  
51
  * *!attachment:file.zip* (link to the attachment of the current object named file.zip)
52 68 Jean-Philippe Lang
  * *!attachment:"file.zip"* (double quotes can be used when the filename contains non word characters)
53 6 Jean-Philippe Lang
  * 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)
54 1 Jean-Philippe Lang
55 14 Jean-Philippe Lang
* Repository files
56
57 39 Yuki Kita
  * *!source:some/file*           -- Link to the file located at /some/file in the project's repository
58
  * *!source:some/file@52*        -- Link to the file's revision 52
59
  * *!source:some/file#L120*      -- Link to line 120 of the file
60
  * *!source:some/file@52#L120*   -- Link to line 120 of the file's revision 52
61
  * *!source:"some file@52#L120"* -- Double quotes can be used when the URL contains spaces
62
  * *!export:some/file*           -- Force the download of the file
63 14 Jean-Philippe Lang
64 32 Jean-Philippe Lang
Escaping:
65 6 Jean-Philippe Lang
66
* You can prevent Redmine links from being parsed by preceding them with an exclamation mark: !
67
68 42 Andrew Quach Huynh
h3. External links
69 5 Jean-Philippe Lang
70
HTTP URLs and email addresses are automatically turned into clickable links: 
71 47 Ian Epperson
* *http&#58;//www.redmine.org* -- External link to the redmine website: http://www.redmine.org
72
* *someone&#64;foo.bar* -- Link to an email address: someone@foo.bar
73 5 Jean-Philippe Lang
74 51 Graham King
HTTP URLs and email addresses can also use different text than the link itself:
75 47 Ian Epperson
* *"Redmine web site"&#58;http&#58;//www.redmine.org* -- External link with different text: "Redmine web site":http://www.redmine.org
76 69 Mikail Borovinskih
* *!http://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Redmine_logo.svg/200px-Redmine_logo.svg.png!:http://en.wikipedia.org/wiki/Redmine* -- External image linke to wiki page of redmine: !http://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Redmine_logo.svg/200px-Redmine_logo.svg.png!:http://en.wikipedia.org/wiki/Redmine
77 47 Ian Epperson
* *"Email someone"&#58;mailto&#58;someone&#64;foo.bar* -- Email link with different text: "Email someone":mailto:someone@foo.bar
78 1 Jean-Philippe Lang
79 48 Ian Epperson
More complex email instructions can be added to an email link.  A default subject, default body and CC information can be defined.  Note that spaces in any of these fields need to be replaced with the code %20.
80
* *"Email webmaster and admin"&#58;mailto&#58;webmaster&#64;foo.bar?cc=admin&#64;foo.bar* -- Email to webmaster, CC admin:  "Email webmaster and admin":mailto:webmaster@foo.bar?cc=admin@foo.bar
81
* *"Email someone for help"&#58;mailto&#58;someone&#64;foo.bar?subject=Website%20Help* -- Email link with the subject "Website Help": "Email someone for help":mailto:someone@foo.bar?subject=Website%20Help
82
* *"Email someone for help"&#58;mailto&#58;someone&#64;foo.bar?subject=Website%20Help&body=My%20problem%20is%20* -- Email link with the subject "Website Help" and a default body: "Email someone for help":mailto:someone@foo.bar?subject=Website%20Help&body=My%20problem%20is%20
83
84 1 Jean-Philippe Lang
h2. Text formatting
85 10 John Goerzen
86 67 Jean-Philippe Lang
For things such as headlines, bold, tables, lists, Redmine supports "Textile syntax":http://en.wikipedia.org/wiki/Textile_%28markup_language%29.  See http://redcloth.org/hobix.com/textile/ for information on using any of these features.  A few samples are included below, but the engine is capable of much more of that.
87 1 Jean-Philippe Lang
88 38 ha thach
h3. Acronym
89
90
<pre>
91
JPL(Jean-Philippe Lang)
92
</pre>
93
94
Display:
95
96
JPL(Jean-Philippe Lang)
97
98 1 Jean-Philippe Lang
h3. Font style
99
100
<pre><code>* *bold*
101
* _italic_
102 19 Pavel Schichko
* *_bold italic_*
103 1 Jean-Philippe Lang
* +underline+
104
* -strike-through-
105 45 Ian Epperson
* Plain ^superscript^
106
* Plain ~subscript~
107 63 Colin Sullivan
* @inline monospace@
108 1 Jean-Philippe Lang
</code></pre>
109
110
Display:
111
112
 * *bold*
113
 * _italic_
114 19 Pavel Schichko
 * *_bold italic_*
115 1 Jean-Philippe Lang
 * +underline+
116
 * -strike-through-
117 45 Ian Epperson
 * Plain ^superscript^
118
 * Plain ~subscript~
119 63 Colin Sullivan
 * @inline monospace@
120 1 Jean-Philippe Lang
121
h3. Inline images
122 9 Jean-Philippe Lang
123 1 Jean-Philippe Lang
* *&#33;image_url&#33;* displays an image located at image_url (textile syntax)
124
* *&#33;>image_url&#33;* right floating image
125 66 Jean-Philippe Lang
* *&#33;image_url(Image title)&#33;* displays an image with an alt/title attribute
126 18 samir djouadi
127 15 Jean-Philippe Lang
If you have an image attached to your wiki page, it can be displayed inline using its filename: *&#33;attached_image.png&#33;*
128 1 Jean-Philippe Lang
129
h3. Headings
130
131
<pre><code>h1. Heading
132 66 Jean-Philippe Lang
133 1 Jean-Philippe Lang
h2. Subheading
134 66 Jean-Philippe Lang
135 1 Jean-Philippe Lang
h3. Subheading
136
</code></pre>
137
138
h3. Paragraphs
139
140 58 Dieter Egert
<pre><code>p. left aligned
141
142 60 Dieter Egert
  p(. left ident 1em
143 58 Dieter Egert
144 60 Dieter Egert
    p((. left ident 2em
145
    as well as for following lines
146 58 Dieter Egert
147 60 Dieter Egert
                                                                                   p>. right aligned
148 58 Dieter Egert
149 60 Dieter Egert
                                                                        p)))>. right ident 3em
150 58 Dieter Egert
151 60 Dieter Egert
                           p=. This is centered paragraph.
152 1 Jean-Philippe Lang
</code></pre>
153
154
h3. Predefined
155
156
To escape wiki syntax
157 58 Dieter Egert
<pre> <pre> *Your text won't become bold* </pre> </pre>
158 36 ha thach
Display:
159 37 ha thach
160 1 Jean-Philippe Lang
<pre> *Your text won't become bold* </pre>
161 38 ha thach
162
h3. Blockquotes
163 37 ha thach
164 60 Dieter Egert
Start the paragraph with *bq.*  or > (also stacked: >>)
165 1 Jean-Philippe Lang
166
<pre><code>bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
167
To go live, all you need to add is a database and a web server.
168
</code></pre>
169
170
Display:
171
172
bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
173
To go live, all you need to add is a database and a web server.
174
175 60 Dieter Egert
>> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
176
To go live, all you need to add is a database and a web server. (starting with >>)
177
178 28 Jean-Philippe Lang
h3. Unordered lists
179
180
<pre>
181
* Item 1
182
* Item 2
183 29 Eric Gallimore
** Item 21
184
** Item 22
185 28 Jean-Philippe Lang
* Item 3
186
</pre>
187
188
displays:
189 1 Jean-Philippe Lang
190 28 Jean-Philippe Lang
* Item 1
191
* Item 2
192 29 Eric Gallimore
** Item 21
193 28 Jean-Philippe Lang
** Item 22
194
* Item 3
195 1 Jean-Philippe Lang
196
h3. Ordered lists
197
198 28 Jean-Philippe Lang
<pre>
199
# Item 1
200
# Item 2
201
# Item 3
202
## Item 3.1
203
## Item 3.2
204 1 Jean-Philippe Lang
</pre>
205 29 Eric Gallimore
206
displays:
207 1 Jean-Philippe Lang
208 20 Kirill Ponomarev
# Item 1
209
# Item 2
210
# Item 3
211 21 Andrew Chaika
## Item 3.1
212
## Item 3.2
213
214 1 Jean-Philippe Lang
h3. Tables
215
216
<pre>
217 58 Dieter Egert
|_.UserID|_.Name|_.Group|_. attribute list |
218 60 Dieter Egert
|\3=.IT               |<. align left|
219
|1|Artur Pirozhkov |/2.Users |>. align right|
220
|2|Vasya Rogov        |=. center |
221 58 Dieter Egert
|3|John Smith |Admin
222
               (root)|^. valign top |
223
|4|-          |Nobody
224
               (anonymous)|~. valign bottom|
225 20 Kirill Ponomarev
</pre>
226 21 Andrew Chaika
227 60 Dieter Egert
displays (all multiple spaces are replaced by 1 space):
228 1 Jean-Philippe Lang
229 58 Dieter Egert
|_.UserID|_.Name|_.Group|_. attribute list |
230 60 Dieter Egert
|\3=.IT                |<. align left|
231
|1|Artur Pirozhkov |/2.Users |>. align right|
232
|2|Vasya Rogov         |=. center |
233 58 Dieter Egert
|3|John Smith |Admin
234
               (root)|^. valign top |
235
|4|-          |Nobody
236
               (anonymous)|~. valign bottom|
237 1 Jean-Philippe Lang
238
h3. Table of content
239
240
<pre><code>{{toc}} => left aligned toc
241
{{>toc}} => right aligned toc
242
</code></pre>
243 7 Jean-Philippe Lang
244
h2. Macros
245
246
Redmine has the following builtin macros:
247
248
{{macro_list}}
249
250 1 Jean-Philippe Lang
251 4 Jean-Philippe Lang
h2. Code highlighting
252 51 Graham King
253 1 Jean-Philippe Lang
Code highlighting relies on "CodeRay":http://coderay.rubychan.de/, a fast syntax highlighting library written completely in Ruby. It currently supports C, C++, CSS, Delphi, Diff, Groovy, HTML, Java, Javascript, JSON, Nitro-XHTML, PHP, Python, RHTML, Ruby, Scheme, SQL, XML and YAML code.
254
255
You can highlight code in your wiki page using this syntax:
256
257 49 Dave Clements
<pre><code><pre><code class="ruby">
258 1 Jean-Philippe Lang
  Place your code here.
259 40 Mischa The Evil
</code></pre>
260 1 Jean-Philippe Lang
</code></pre>
261
262
Example:
263
264
<pre><code class="ruby">
265
# The Greeter class
266
class Greeter
267
  def initialize(name)
268
    @name = name.capitalize
269
  end
270
 
271
  def salute
272
    puts "Hello #{@name}!"
273
  end
274 40 Mischa The Evil
end
275 52 Vladimir Vasilkin
</code></pre>
276
277
278
h2. Translation
279
280
h3. Русский 
281
282 65 Lucy Yevseyeva
[[RusRedmineTextFormatting|Перевод на русский]]