Project

General

Profile

RedmineTextFormatting » History » Version 68

Jean-Philippe Lang, 2011-11-27 12:44
misc updates

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
* *"Email someone"&#58;mailto&#58;someone&#64;foo.bar* -- Email link with different text: "Email someone":mailto:someone@foo.bar
77 1 Jean-Philippe Lang
78 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.
79
* *"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
80
* *"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
81
* *"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
82
83 1 Jean-Philippe Lang
h2. Text formatting
84 10 John Goerzen
85 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.
86 1 Jean-Philippe Lang
87 38 ha thach
h3. Acronym
88
89
<pre>
90
JPL(Jean-Philippe Lang)
91
</pre>
92
93
Display:
94
95
JPL(Jean-Philippe Lang)
96
97 1 Jean-Philippe Lang
h3. Font style
98
99
<pre><code>* *bold*
100
* _italic_
101 19 Pavel Schichko
* *_bold italic_*
102 1 Jean-Philippe Lang
* +underline+
103
* -strike-through-
104 45 Ian Epperson
* Plain ^superscript^
105
* Plain ~subscript~
106 63 Colin Sullivan
* @inline monospace@
107 1 Jean-Philippe Lang
</code></pre>
108
109
Display:
110
111
 * *bold*
112
 * _italic_
113 19 Pavel Schichko
 * *_bold italic_*
114 1 Jean-Philippe Lang
 * +underline+
115
 * -strike-through-
116 45 Ian Epperson
 * Plain ^superscript^
117
 * Plain ~subscript~
118 63 Colin Sullivan
 * @inline monospace@
119 1 Jean-Philippe Lang
120
h3. Inline images
121 9 Jean-Philippe Lang
122 1 Jean-Philippe Lang
* *&#33;image_url&#33;* displays an image located at image_url (textile syntax)
123
* *&#33;>image_url&#33;* right floating image
124 66 Jean-Philippe Lang
* *&#33;image_url(Image title)&#33;* displays an image with an alt/title attribute
125 18 samir djouadi
126 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;*
127 1 Jean-Philippe Lang
128
h3. Headings
129
130
<pre><code>h1. Heading
131 66 Jean-Philippe Lang
132 1 Jean-Philippe Lang
h2. Subheading
133 66 Jean-Philippe Lang
134 1 Jean-Philippe Lang
h3. Subheading
135
</code></pre>
136
137
h3. Paragraphs
138
139 58 Dieter Egert
<pre><code>p. left aligned
140
141 60 Dieter Egert
  p(. left ident 1em
142 58 Dieter Egert
143 60 Dieter Egert
    p((. left ident 2em
144
    as well as for following lines
145 58 Dieter Egert
146 60 Dieter Egert
                                                                                   p>. right aligned
147 58 Dieter Egert
148 60 Dieter Egert
                                                                        p)))>. right ident 3em
149 58 Dieter Egert
150 60 Dieter Egert
                           p=. This is centered paragraph.
151 1 Jean-Philippe Lang
</code></pre>
152
153
h3. Predefined
154
155
To escape wiki syntax
156 58 Dieter Egert
<pre> <pre> *Your text won't become bold* </pre> </pre>
157 36 ha thach
Display:
158 37 ha thach
159 1 Jean-Philippe Lang
<pre> *Your text won't become bold* </pre>
160 38 ha thach
161
h3. Blockquotes
162 37 ha thach
163 60 Dieter Egert
Start the paragraph with *bq.*  or > (also stacked: >>)
164 1 Jean-Philippe Lang
165
<pre><code>bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
166
To go live, all you need to add is a database and a web server.
167
</code></pre>
168
169
Display:
170
171
bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
172
To go live, all you need to add is a database and a web server.
173
174 60 Dieter Egert
>> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
175
To go live, all you need to add is a database and a web server. (starting with >>)
176
177 28 Jean-Philippe Lang
h3. Unordered lists
178
179
<pre>
180
* Item 1
181
* Item 2
182 29 Eric Gallimore
** Item 21
183
** Item 22
184 28 Jean-Philippe Lang
* Item 3
185
</pre>
186
187
displays:
188 1 Jean-Philippe Lang
189 28 Jean-Philippe Lang
* Item 1
190
* Item 2
191 29 Eric Gallimore
** Item 21
192 28 Jean-Philippe Lang
** Item 22
193
* Item 3
194 1 Jean-Philippe Lang
195
h3. Ordered lists
196
197 28 Jean-Philippe Lang
<pre>
198
# Item 1
199
# Item 2
200
# Item 3
201
## Item 3.1
202
## Item 3.2
203 1 Jean-Philippe Lang
</pre>
204 29 Eric Gallimore
205
displays:
206 1 Jean-Philippe Lang
207 20 Kirill Ponomarev
# Item 1
208
# Item 2
209
# Item 3
210 21 Andrew Chaika
## Item 3.1
211
## Item 3.2
212
213 1 Jean-Philippe Lang
h3. Tables
214
215
<pre>
216 58 Dieter Egert
|_.UserID|_.Name|_.Group|_. attribute list |
217 60 Dieter Egert
|\3=.IT               |<. align left|
218
|1|Artur Pirozhkov |/2.Users |>. align right|
219
|2|Vasya Rogov        |=. center |
220 58 Dieter Egert
|3|John Smith |Admin
221
               (root)|^. valign top |
222
|4|-          |Nobody
223
               (anonymous)|~. valign bottom|
224 20 Kirill Ponomarev
</pre>
225 21 Andrew Chaika
226 60 Dieter Egert
displays (all multiple spaces are replaced by 1 space):
227 1 Jean-Philippe Lang
228 58 Dieter Egert
|_.UserID|_.Name|_.Group|_. attribute list |
229 60 Dieter Egert
|\3=.IT                |<. align left|
230
|1|Artur Pirozhkov |/2.Users |>. align right|
231
|2|Vasya Rogov         |=. center |
232 58 Dieter Egert
|3|John Smith |Admin
233
               (root)|^. valign top |
234
|4|-          |Nobody
235
               (anonymous)|~. valign bottom|
236 1 Jean-Philippe Lang
237
h3. Table of content
238
239
<pre><code>{{toc}} => left aligned toc
240
{{>toc}} => right aligned toc
241
</code></pre>
242 7 Jean-Philippe Lang
243
h2. Macros
244
245
Redmine has the following builtin macros:
246
247
{{macro_list}}
248
249 1 Jean-Philippe Lang
250 4 Jean-Philippe Lang
h2. Code highlighting
251 51 Graham King
252 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.
253
254
You can highlight code in your wiki page using this syntax:
255
256 49 Dave Clements
<pre><code><pre><code class="ruby">
257 1 Jean-Philippe Lang
  Place your code here.
258 40 Mischa The Evil
</code></pre>
259 1 Jean-Philippe Lang
</code></pre>
260
261
Example:
262
263
<pre><code class="ruby">
264
# The Greeter class
265
class Greeter
266
  def initialize(name)
267
    @name = name.capitalize
268
  end
269
 
270
  def salute
271
    puts "Hello #{@name}!"
272
  end
273 40 Mischa The Evil
end
274 52 Vladimir Vasilkin
</code></pre>
275
276
277
h2. Translation
278
279
h3. Русский 
280
281 65 Lucy Yevseyeva
[[RusRedmineTextFormatting|Перевод на русский]]