RedmineTextFormatting » History » Version 83
Jean-Philippe Lang, 2012-10-17 22:41
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 | 77 | Thomas Themel | * *!source:"some file@52#L120"* -- Double quotes can be used when the URL contains spaces |
62 | * *!source:repo_identifier|some/file* -- Link to a file in a repository other than the project default repository. |
||
63 | * *!source:"repo_identifier|some file"* -- Link to a file in a repository other than the project default repository, with spaces in the path. |
||
64 | 1 | Jean-Philippe Lang | * *!export:some/file* -- Force the download of the file |
65 | 77 | Thomas Themel | |
66 | 14 | Jean-Philippe Lang | |
67 | 32 | Jean-Philippe Lang | Escaping: |
68 | 6 | Jean-Philippe Lang | |
69 | * You can prevent Redmine links from being parsed by preceding them with an exclamation mark: ! |
||
70 | |||
71 | 42 | Andrew Quach Huynh | h3. External links |
72 | 5 | Jean-Philippe Lang | |
73 | 83 | Jean-Philippe Lang | HTTP URLs are automatically turned into clickable links: |
74 | 47 | Ian Epperson | * *http://www.redmine.org* -- External link to the redmine website: http://www.redmine.org |
75 | * *someone@foo.bar* -- Link to an email address: someone@foo.bar |
||
76 | 5 | Jean-Philippe Lang | |
77 | 83 | Jean-Philippe Lang | HTTP URLs can also use different text than the link itself: |
78 | 47 | Ian Epperson | * *"Redmine web site":http://www.redmine.org* -- External link with different text: "Redmine web site":http://www.redmine.org |
79 | 70 | Jean-Philippe Lang | * *!http://www.redmine.org/attachments/7069/Redmine_logo.png(Redmine web site)!:http://www.redmine.org* -- External image with a title that links to an URL: |
80 | 1 | Jean-Philippe Lang | |
81 | p=. !http://www.redmine.org/attachments/7069/Redmine_logo.png(Redmine web site)!:http://www.redmine.org |
||
82 | 83 | Jean-Philippe Lang | |
83 | h3. Email addresses |
||
84 | |||
85 | Email addresses are automatically turned into clickable links: |
||
86 | 70 | Jean-Philippe Lang | |
87 | 47 | Ian Epperson | * *"Email someone":mailto:someone@foo.bar* -- Email link with different text: "Email someone":mailto:someone@foo.bar |
88 | 1 | Jean-Philippe Lang | |
89 | 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. |
90 | * *"Email webmaster and admin":mailto:webmaster@foo.bar?cc=admin@foo.bar* -- Email to webmaster, CC admin: "Email webmaster and admin":mailto:webmaster@foo.bar?cc=admin@foo.bar |
||
91 | * *"Email someone for help":mailto:someone@foo.bar?subject=Website%20Help* -- Email link with the subject "Website Help": "Email someone for help":mailto:someone@foo.bar?subject=Website%20Help |
||
92 | * *"Email someone for help":mailto:someone@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 |
||
93 | |||
94 | 1 | Jean-Philippe Lang | h2. Text formatting |
95 | 10 | John Goerzen | |
96 | 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. |
97 | 1 | Jean-Philippe Lang | |
98 | 38 | ha thach | h3. Acronym |
99 | |||
100 | <pre> |
||
101 | JPL(Jean-Philippe Lang) |
||
102 | </pre> |
||
103 | |||
104 | Display: |
||
105 | |||
106 | JPL(Jean-Philippe Lang) |
||
107 | |||
108 | 1 | Jean-Philippe Lang | h3. Font style |
109 | |||
110 | <pre><code>* *bold* |
||
111 | * _italic_ |
||
112 | 19 | Pavel Schichko | * *_bold italic_* |
113 | 1 | Jean-Philippe Lang | * +underline+ |
114 | * -strike-through- |
||
115 | 45 | Ian Epperson | * Plain ^superscript^ |
116 | * Plain ~subscript~ |
||
117 | 63 | Colin Sullivan | * @inline monospace@ |
118 | 1 | Jean-Philippe Lang | </code></pre> |
119 | |||
120 | Display: |
||
121 | |||
122 | * *bold* |
||
123 | * _italic_ |
||
124 | 19 | Pavel Schichko | * *_bold italic_* |
125 | 1 | Jean-Philippe Lang | * +underline+ |
126 | * -strike-through- |
||
127 | 45 | Ian Epperson | * Plain ^superscript^ |
128 | * Plain ~subscript~ |
||
129 | 63 | Colin Sullivan | * @inline monospace@ |
130 | 1 | Jean-Philippe Lang | |
131 | h3. Inline images |
||
132 | 9 | Jean-Philippe Lang | |
133 | 1 | Jean-Philippe Lang | * *!image_url!* displays an image located at image_url (textile syntax) |
134 | * *!>image_url!* right floating image |
||
135 | 66 | Jean-Philippe Lang | * *!image_url(Image title)!* displays an image with an alt/title attribute |
136 | 73 | Dieter Egert | * *!image_url!:URL* displays an image located at image_url with link URL added |
137 | 18 | samir djouadi | |
138 | 15 | Jean-Philippe Lang | If you have an image attached to your wiki page, it can be displayed inline using its filename: *!attached_image.png!* |
139 | 1 | Jean-Philippe Lang | |
140 | 80 | Caio Cunha | You can also apply a CSS style to the image in the same ways as styling SPANs. The code *!{width: 100%}attached_image.png!* will make the image adjusts to the parent's width. |
141 | |||
142 | 1 | Jean-Philippe Lang | h3. Headings |
143 | |||
144 | <pre><code>h1. Heading |
||
145 | 66 | Jean-Philippe Lang | |
146 | 1 | Jean-Philippe Lang | h2. Subheading |
147 | 66 | Jean-Philippe Lang | |
148 | 1 | Jean-Philippe Lang | h3. Subheading |
149 | </code></pre> |
||
150 | |||
151 | h3. Paragraphs |
||
152 | |||
153 | 58 | Dieter Egert | <pre><code>p. left aligned |
154 | |||
155 | 60 | Dieter Egert | p(. left ident 1em |
156 | 58 | Dieter Egert | |
157 | 60 | Dieter Egert | p((. left ident 2em |
158 | as well as for following lines |
||
159 | 58 | Dieter Egert | |
160 | 60 | Dieter Egert | p>. right aligned |
161 | 58 | Dieter Egert | |
162 | 60 | Dieter Egert | p)))>. right ident 3em |
163 | 58 | Dieter Egert | |
164 | 60 | Dieter Egert | p=. This is centered paragraph. |
165 | 1 | Jean-Philippe Lang | </code></pre> |
166 | |||
167 | h3. Predefined |
||
168 | |||
169 | To escape wiki syntax |
||
170 | 58 | Dieter Egert | <pre> <pre> *Your text won't become bold* </pre> </pre> |
171 | 36 | ha thach | Display: |
172 | 37 | ha thach | |
173 | 1 | Jean-Philippe Lang | <pre> *Your text won't become bold* </pre> |
174 | 38 | ha thach | |
175 | h3. Blockquotes |
||
176 | 37 | ha thach | |
177 | 60 | Dieter Egert | Start the paragraph with *bq.* or > (also stacked: >>) |
178 | 1 | Jean-Philippe Lang | |
179 | <pre><code>bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. |
||
180 | To go live, all you need to add is a database and a web server. |
||
181 | </code></pre> |
||
182 | |||
183 | Display: |
||
184 | |||
185 | bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. |
||
186 | To go live, all you need to add is a database and a web server. |
||
187 | |||
188 | 60 | Dieter Egert | >> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. |
189 | To go live, all you need to add is a database and a web server. (starting with >>) |
||
190 | |||
191 | 28 | Jean-Philippe Lang | h3. Unordered lists |
192 | |||
193 | <pre> |
||
194 | * Item 1 |
||
195 | * Item 2 |
||
196 | 29 | Eric Gallimore | ** Item 21 |
197 | ** Item 22 |
||
198 | 28 | Jean-Philippe Lang | * Item 3 |
199 | </pre> |
||
200 | |||
201 | displays: |
||
202 | 1 | Jean-Philippe Lang | |
203 | 28 | Jean-Philippe Lang | * Item 1 |
204 | * Item 2 |
||
205 | 29 | Eric Gallimore | ** Item 21 |
206 | 28 | Jean-Philippe Lang | ** Item 22 |
207 | * Item 3 |
||
208 | 1 | Jean-Philippe Lang | |
209 | h3. Ordered lists |
||
210 | |||
211 | 28 | Jean-Philippe Lang | <pre> |
212 | # Item 1 |
||
213 | # Item 2 |
||
214 | # Item 3 |
||
215 | ## Item 3.1 |
||
216 | ## Item 3.2 |
||
217 | 1 | Jean-Philippe Lang | </pre> |
218 | 29 | Eric Gallimore | |
219 | displays: |
||
220 | 1 | Jean-Philippe Lang | |
221 | 20 | Kirill Ponomarev | # Item 1 |
222 | # Item 2 |
||
223 | # Item 3 |
||
224 | 21 | Andrew Chaika | ## Item 3.1 |
225 | ## Item 3.2 |
||
226 | |||
227 | 1 | Jean-Philippe Lang | h3. Tables |
228 | |||
229 | <pre> |
||
230 | 71 | Dieter Egert | |_.UserID |_.Name|_.Group|_. attribute list | |
231 | 72 | Dieter Egert | |Starting with| a | simple|row | |
232 | 60 | Dieter Egert | |\3=.IT |<. align left| |
233 | |1|Artur Pirozhkov |/2.Users |>. align right| |
||
234 | |2|Vasya Rogov |=. center | |
||
235 | 58 | Dieter Egert | |3|John Smith |Admin |
236 | (root)|^. valign top | |
||
237 | |4|- |Nobody |
||
238 | (anonymous)|~. valign bottom| |
||
239 | 20 | Kirill Ponomarev | </pre> |
240 | 21 | Andrew Chaika | |
241 | 1 | Jean-Philippe Lang | displays (all multiple spaces are replaced by 1 space): |
242 | |||
243 | 71 | Dieter Egert | |_.UserID |_.Name|_.Group|_. attribute list | |
244 | 72 | Dieter Egert | |Starting with| a | simple|row | |
245 | 60 | Dieter Egert | |\3=.IT |<. align left| |
246 | |1|Artur Pirozhkov |/2.Users |>. align right| |
||
247 | |2|Vasya Rogov |=. center | |
||
248 | 58 | Dieter Egert | |3|John Smith |Admin |
249 | (root)|^. valign top | |
||
250 | |4|- |Nobody |
||
251 | (anonymous)|~. valign bottom| |
||
252 | 1 | Jean-Philippe Lang | |
253 | 78 | Thomas Themel | If you want to include pipe characters inside your table (e.g. for Wiki links), you need to prevent textile from interpreting them: |
254 | |||
255 | |_.Input |_. Output| |
||
256 | |*<notextile><notextile>|</notextile></notextile>*|<notextile>|</notextile>| |
||
257 | |||
258 | 1 | Jean-Philippe Lang | h3. Table of content |
259 | |||
260 | <pre><code>{{toc}} => left aligned toc |
||
261 | {{>toc}} => right aligned toc |
||
262 | </code></pre> |
||
263 | 7 | Jean-Philippe Lang | |
264 | 79 | Mike Bison | Please keep in mind, that the toc-tag needs an empty line above and underneath it and no other text before and after it. |
265 | |||
266 | Example: |
||
267 | |||
268 | <pre><code> |
||
269 | h1. headLineOne |
||
270 | |||
271 | h2. something |
||
272 | |||
273 | {{toc}} |
||
274 | |||
275 | h2. something more |
||
276 | </code></pre> |
||
277 | |||
278 | 7 | Jean-Philippe Lang | h2. Macros |
279 | |||
280 | 82 | Jean-Philippe Lang | Redmine includes a macros system that lets you add custom functions to insert dynamic content in formatted text. You can learn about writing your own macros in [[RedmineMacros]]. Redmine alse includes a few builtin macros: |
281 | 7 | Jean-Philippe Lang | |
282 | {{macro_list}} |
||
283 | 1 | Jean-Philippe Lang | |
284 | 4 | Jean-Philippe Lang | h2. Code highlighting |
285 | 51 | Graham King | |
286 | 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. |
287 | |||
288 | You can highlight code in your wiki page using this syntax: |
||
289 | |||
290 | 49 | Dave Clements | <pre><code><pre><code class="ruby"> |
291 | 1 | Jean-Philippe Lang | Place your code here. |
292 | 40 | Mischa The Evil | </code></pre> |
293 | 1 | Jean-Philippe Lang | </code></pre> |
294 | |||
295 | Example: |
||
296 | |||
297 | <pre><code class="ruby"> |
||
298 | # The Greeter class |
||
299 | class Greeter |
||
300 | def initialize(name) |
||
301 | @name = name.capitalize |
||
302 | end |
||
303 | |||
304 | def salute |
||
305 | puts "Hello #{@name}!" |
||
306 | end |
||
307 | 40 | Mischa The Evil | end |
308 | 52 | Vladimir Vasilkin | </code></pre> |
309 | |||
310 | h2. Translation |
||
311 | 1 | Jean-Philippe Lang | |
312 | 75 | Caille Rotie | Note that the following translations may not be up to date. Please refer to the original english documentation if needed. |
313 | 52 | Vladimir Vasilkin | |
314 | 75 | Caille Rotie | * [[RusRedmineTextFormatting|Перевод на русский]] |
315 | * [[FrRedmineWikiFormatting|French]] |