RedmineTextFormatting » History » Version 97
Mischa The Evil, 2013-10-12 03:50
Fixed and extended the syntax for projects links.
1 | 68 | Jean-Philippe Lang | h1. Text formatting |
---|---|---|---|
2 | 1 | Jean-Philippe Lang | |
3 | 1 | Jean-Philippe Lang | {{>TOC}} |
4 | 1 | Jean-Philippe Lang | |
5 | 1 | Jean-Philippe Lang | h2. Links |
6 | 1 | Jean-Philippe Lang | |
7 | 6 | Jean-Philippe Lang | h3. Redmine links |
8 | 6 | Jean-Philippe Lang | |
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 | 87 | Olivier Pinette | * Link to an issue note: *!#124-6*, or *!#124!#note-6* |
13 | 6 | Jean-Philippe Lang | * Link to a changeset: *!r758* (displays r758) |
14 | 68 | Jean-Philippe Lang | * Link to a changeset with a non-numeric hash: *commit:c6f4d0fd* (displays c6f4d0fd). |
15 | 1 | Jean-Philippe Lang | |
16 | 6 | Jean-Philippe Lang | Wiki links: |
17 | 1 | Jean-Philippe Lang | |
18 | 3 | Jean-Philippe Lang | * *[[Guide]]* displays a link to the page named 'Guide': [[Guide]] |
19 | 51 | Graham King | * *[[Guide|User manual]]* displays a link to the same page but with different text: [[Guide|User manual]] |
20 | 51 | Graham King | * *[[Guide#User-guide|User guide]]* displays a link to the header on the same page with different text: [[Guide#User-guide|User guide]] |
21 | 1 | Jean-Philippe Lang | |
22 | 89 | Olivier Pinette | You can also link to pages of another project's wiki (using the project identifier): |
23 | 3 | Jean-Philippe Lang | |
24 | 1 | Jean-Philippe Lang | * *[[sandbox:some page]]* displays a link to the page named 'Some page' of the Sandbox wiki |
25 | 1 | Jean-Philippe Lang | * *[[sandbox:]]* displays a link to the Sandbox wiki main page |
26 | 1 | Jean-Philippe Lang | |
27 | 1 | Jean-Philippe Lang | Wiki links are displayed in red if the page doesn't exist yet, eg: [[Nonexistent page]]. |
28 | 1 | Jean-Philippe Lang | |
29 | 32 | Jean-Philippe Lang | Links to others resources: |
30 | 6 | Jean-Philippe Lang | |
31 | 6 | Jean-Philippe Lang | * Documents: |
32 | 6 | Jean-Philippe Lang | |
33 | 6 | Jean-Philippe Lang | * *!document#17* (link to document with id 17) |
34 | 6 | Jean-Philippe Lang | * *!document:Greetings* (link to the document with title "Greetings") |
35 | 1 | Jean-Philippe Lang | * *!document:"Some document"* (double quotes can be used when document title contains spaces) |
36 | 89 | Olivier Pinette | * *!sandbox:document:"Some document"* (link to a document with title "Some document" in project identifier "sandbox") |
37 | 6 | Jean-Philippe Lang | |
38 | 6 | Jean-Philippe Lang | * Versions: |
39 | 6 | Jean-Philippe Lang | |
40 | 6 | Jean-Philippe Lang | * *!version#3* (link to version with id 3) |
41 | 6 | Jean-Philippe Lang | * *!version:1.0.0* (link to version named "1.0.0") |
42 | 1 | Jean-Philippe Lang | * *!version:"1.0 beta 2"* |
43 | 89 | Olivier Pinette | * *!sandbox:version:1.0.0* (link to version "1.0.0" in the project identifier "sandbox") |
44 | 1 | Jean-Philippe Lang | |
45 | 44 | Anh Tu Sam | * Attachments: |
46 | 1 | Jean-Philippe Lang | |
47 | 1 | Jean-Philippe Lang | * *!attachment:file.zip* (link to the attachment of the current object named file.zip) |
48 | 1 | Jean-Philippe Lang | * *!attachment:"file.zip"* (double quotes can be used when the filename contains non word characters) |
49 | 1 | 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) |
50 | 1 | Jean-Philippe Lang | |
51 | 87 | Olivier Pinette | * Changesets: |
52 | 1 | Jean-Philippe Lang | |
53 | 87 | Olivier Pinette | * *!r758* (link to a changeset) |
54 | 87 | Olivier Pinette | * *!commit:c6f4d0fd* (link to a changeset with a non-numeric hash) |
55 | 87 | Olivier Pinette | * *!svn1|r758* (link to a changeset of a specific repository, for projects with multiple repositories) |
56 | 87 | Olivier Pinette | * *!commit:hg|c6f4d0fd* (link to a changeset with a non-numeric hash of a specific repository) |
57 | 87 | Olivier Pinette | * *!sandbox:r758* (link to a changeset of another project) |
58 | 89 | Olivier Pinette | * *!sandbox:commit:c6f4d0fd* (link to a changeset with a non-numeric hash of another project identifier) |
59 | 87 | Olivier Pinette | |
60 | 87 | Olivier Pinette | * Repository files: |
61 | 87 | Olivier Pinette | |
62 | 39 | Yuki Kita | * *!source:some/file* -- Link to the file located at /some/file in the project's repository |
63 | 1 | Jean-Philippe Lang | * *!source:some/file@52* -- Link to the file's revision 52 |
64 | 39 | Yuki Kita | * *!source:some/file#L120* -- Link to line 120 of the file |
65 | 1 | Jean-Philippe Lang | * *!source:some/file@52#L120* -- Link to line 120 of the file's revision 52 |
66 | 1 | Jean-Philippe Lang | * *!source:"some file@52#L120"* -- Double quotes can be used when the URL contains spaces |
67 | 1 | Jean-Philippe Lang | * *!source:repo_identifier|some/file* -- Link to a file in a repository other than the project default repository. |
68 | 1 | Jean-Philippe Lang | * *!source:"repo_identifier|some file"* -- Link to a file in a repository other than the project default repository, with spaces in the path. |
69 | 1 | Jean-Philippe Lang | * *!export:some/file* -- Force the download of the file |
70 | 1 | Jean-Philippe Lang | |
71 | 96 | Mischa The Evil | * Forums: |
72 | 96 | Mischa The Evil | |
73 | 96 | Mischa The Evil | * *!forum#2* (link to forum with id 2) |
74 | 96 | Mischa The Evil | * *!forum:Discussion* (link to forum with name "Discussion") |
75 | 96 | Mischa The Evil | * *!forum:"Help and more"* (double quotes can be used when forum name contains spaces) |
76 | 96 | Mischa The Evil | |
77 | 87 | Olivier Pinette | * Forum messages: |
78 | 39 | Yuki Kita | |
79 | 87 | Olivier Pinette | * *!message#1218* (link to message with id 1218) |
80 | 96 | Mischa The Evil | |
81 | 96 | Mischa The Evil | * News items |
82 | 96 | Mischa The Evil | |
83 | 96 | Mischa The Evil | * *!news#1* (link to news item with id 1) |
84 | 96 | Mischa The Evil | * *!news:"eCookbook first release !"* (link to news item with name "eCookbook first release !") |
85 | 87 | Olivier Pinette | |
86 | 87 | Olivier Pinette | * Projects: |
87 | 87 | Olivier Pinette | |
88 | 97 | Mischa The Evil | * *!project#3* (link to project with id 3) |
89 | 97 | Mischa The Evil | * *!project:someproject* (link to project with name "someproject") |
90 | 97 | Mischa The Evil | * *!project:"Multiple words project"* (double quotes can be used when project name contains spaces) |
91 | 87 | Olivier Pinette | |
92 | 32 | Jean-Philippe Lang | Escaping: |
93 | 6 | Jean-Philippe Lang | |
94 | 6 | Jean-Philippe Lang | * You can prevent Redmine links from being parsed by preceding them with an exclamation mark: ! |
95 | 6 | Jean-Philippe Lang | |
96 | 42 | Andrew Quach Huynh | h3. External links |
97 | 5 | Jean-Philippe Lang | |
98 | 83 | Jean-Philippe Lang | HTTP URLs are automatically turned into clickable links: |
99 | 47 | Ian Epperson | * *http://www.redmine.org* -- External link to the redmine website: http://www.redmine.org |
100 | 47 | Ian Epperson | * *someone@foo.bar* -- Link to an email address: someone@foo.bar |
101 | 5 | Jean-Philippe Lang | |
102 | 83 | Jean-Philippe Lang | HTTP URLs can also use different text than the link itself: |
103 | 47 | Ian Epperson | * *"Redmine web site":http://www.redmine.org* -- External link with different text: "Redmine web site":http://www.redmine.org |
104 | 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: |
105 | 1 | Jean-Philippe Lang | |
106 | 1 | Jean-Philippe Lang | p=. !http://www.redmine.org/attachments/7069/Redmine_logo.png(Redmine web site)!:http://www.redmine.org |
107 | 83 | Jean-Philippe Lang | |
108 | 83 | Jean-Philippe Lang | h3. Email addresses |
109 | 83 | Jean-Philippe Lang | |
110 | 83 | Jean-Philippe Lang | Email addresses are automatically turned into clickable links: |
111 | 70 | Jean-Philippe Lang | |
112 | 47 | Ian Epperson | * *"Email someone":mailto:someone@foo.bar* -- Email link with different text: "Email someone":mailto:someone@foo.bar |
113 | 1 | Jean-Philippe Lang | |
114 | 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. |
115 | 48 | Ian Epperson | * *"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 |
116 | 48 | Ian Epperson | * *"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 |
117 | 48 | Ian Epperson | * *"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 |
118 | 48 | Ian Epperson | |
119 | 1 | Jean-Philippe Lang | h2. Text formatting |
120 | 10 | John Goerzen | |
121 | 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. |
122 | 1 | Jean-Philippe Lang | |
123 | 38 | ha thach | h3. Acronym |
124 | 38 | ha thach | |
125 | 38 | ha thach | <pre> |
126 | 38 | ha thach | JPL(Jean-Philippe Lang) |
127 | 38 | ha thach | </pre> |
128 | 38 | ha thach | |
129 | 38 | ha thach | Display: |
130 | 38 | ha thach | |
131 | 38 | ha thach | JPL(Jean-Philippe Lang) |
132 | 38 | ha thach | |
133 | 1 | Jean-Philippe Lang | h3. Font style |
134 | 1 | Jean-Philippe Lang | |
135 | 1 | Jean-Philippe Lang | <pre><code>* *bold* |
136 | 1 | Jean-Philippe Lang | * _italic_ |
137 | 19 | Pavel Schichko | * *_bold italic_* |
138 | 1 | Jean-Philippe Lang | * +underline+ |
139 | 1 | Jean-Philippe Lang | * -strike-through- |
140 | 45 | Ian Epperson | * Plain ^superscript^ |
141 | 45 | Ian Epperson | * Plain ~subscript~ |
142 | 63 | Colin Sullivan | * @inline monospace@ |
143 | 1 | Jean-Philippe Lang | </code></pre> |
144 | 1 | Jean-Philippe Lang | |
145 | 1 | Jean-Philippe Lang | Display: |
146 | 1 | Jean-Philippe Lang | |
147 | 1 | Jean-Philippe Lang | * *bold* |
148 | 1 | Jean-Philippe Lang | * _italic_ |
149 | 19 | Pavel Schichko | * *_bold italic_* |
150 | 1 | Jean-Philippe Lang | * +underline+ |
151 | 1 | Jean-Philippe Lang | * -strike-through- |
152 | 45 | Ian Epperson | * Plain ^superscript^ |
153 | 45 | Ian Epperson | * Plain ~subscript~ |
154 | 63 | Colin Sullivan | * @inline monospace@ |
155 | 1 | Jean-Philippe Lang | |
156 | 1 | Jean-Philippe Lang | h3. Inline images |
157 | 9 | Jean-Philippe Lang | |
158 | 1 | Jean-Philippe Lang | * *!image_url!* displays an image located at image_url (textile syntax) |
159 | 1 | Jean-Philippe Lang | * *!>image_url!* right floating image |
160 | 66 | Jean-Philippe Lang | * *!image_url(Image title)!* displays an image with an alt/title attribute |
161 | 73 | Dieter Egert | * *!image_url!:URL* displays an image located at image_url with link URL added |
162 | 18 | samir djouadi | |
163 | 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!* |
164 | 1 | Jean-Philippe Lang | |
165 | 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. |
166 | 80 | Caio Cunha | |
167 | 1 | Jean-Philippe Lang | h3. Headings |
168 | 1 | Jean-Philippe Lang | |
169 | 1 | Jean-Philippe Lang | <pre><code>h1. Heading |
170 | 1 | Jean-Philippe Lang | |
171 | 1 | Jean-Philippe Lang | h2. Subheading |
172 | 66 | Jean-Philippe Lang | |
173 | 1 | Jean-Philippe Lang | h3. Subheading |
174 | 66 | Jean-Philippe Lang | </code></pre> |
175 | 87 | Olivier Pinette | |
176 | 87 | Olivier Pinette | Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth. |
177 | 1 | Jean-Philippe Lang | |
178 | 1 | Jean-Philippe Lang | h3. Paragraphs |
179 | 1 | Jean-Philippe Lang | |
180 | 58 | Dieter Egert | <pre><code>p. left aligned |
181 | 58 | Dieter Egert | |
182 | 60 | Dieter Egert | p(. left ident 1em |
183 | 58 | Dieter Egert | |
184 | 60 | Dieter Egert | p((. left ident 2em |
185 | 60 | Dieter Egert | as well as for following lines |
186 | 58 | Dieter Egert | |
187 | 60 | Dieter Egert | p>. right aligned |
188 | 58 | Dieter Egert | |
189 | 60 | Dieter Egert | p)))>. right ident 3em |
190 | 58 | Dieter Egert | |
191 | 60 | Dieter Egert | p=. This is centered paragraph. |
192 | 1 | Jean-Philippe Lang | </code></pre> |
193 | 1 | Jean-Philippe Lang | |
194 | 90 | Olivier Pinette | h3. Horizontal rule |
195 | 90 | Olivier Pinette | |
196 | 90 | Olivier Pinette | @----@ |
197 | 90 | Olivier Pinette | Display: |
198 | 90 | Olivier Pinette | |
199 | 90 | Olivier Pinette | ---- |
200 | 90 | Olivier Pinette | |
201 | 90 | Olivier Pinette | |
202 | 1 | Jean-Philippe Lang | h3. Predefined |
203 | 1 | Jean-Philippe Lang | |
204 | 1 | Jean-Philippe Lang | To escape wiki syntax |
205 | 58 | Dieter Egert | <pre> <pre> *Your text won't become bold* </pre> </pre> |
206 | 36 | ha thach | Display: |
207 | 37 | ha thach | |
208 | 1 | Jean-Philippe Lang | <pre> *Your text won't become bold* </pre> |
209 | 38 | ha thach | |
210 | 38 | ha thach | h3. Blockquotes |
211 | 37 | ha thach | |
212 | 84 | Jean-Philippe Lang | Start the paragraph with *bq.*: |
213 | 1 | Jean-Philippe Lang | |
214 | 1 | Jean-Philippe Lang | <pre><code>bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. |
215 | 1 | Jean-Philippe Lang | To go live, all you need to add is a database and a web server. |
216 | 1 | Jean-Philippe Lang | </code></pre> |
217 | 1 | Jean-Philippe Lang | |
218 | 84 | Jean-Philippe Lang | Displays: |
219 | 1 | Jean-Philippe Lang | |
220 | 1 | Jean-Philippe Lang | bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. |
221 | 1 | Jean-Philippe Lang | To go live, all you need to add is a database and a web server. |
222 | 1 | Jean-Philippe Lang | |
223 | 84 | Jean-Philippe Lang | You can also use > at the beginning of each line and stack them for nested quotes: |
224 | 84 | Jean-Philippe Lang | |
225 | 84 | Jean-Philippe Lang | <pre> |
226 | 1 | Jean-Philippe Lang | >> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. |
227 | 84 | Jean-Philippe Lang | >> To go live, all you need to add is a database and a web server. |
228 | 84 | Jean-Philippe Lang | > Great! |
229 | 84 | Jean-Philippe Lang | </pre> |
230 | 84 | Jean-Philippe Lang | |
231 | 84 | Jean-Philippe Lang | Displays: |
232 | 84 | Jean-Philippe Lang | |
233 | 84 | Jean-Philippe Lang | >> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. |
234 | 84 | Jean-Philippe Lang | >> To go live, all you need to add is a database and a web server. |
235 | 84 | Jean-Philippe Lang | > Great! |
236 | 60 | Dieter Egert | |
237 | 28 | Jean-Philippe Lang | h3. Unordered lists |
238 | 28 | Jean-Philippe Lang | |
239 | 28 | Jean-Philippe Lang | <pre> |
240 | 28 | Jean-Philippe Lang | * Item 1 |
241 | 28 | Jean-Philippe Lang | * Item 2 |
242 | 29 | Eric Gallimore | ** Item 21 |
243 | 29 | Eric Gallimore | ** Item 22 |
244 | 28 | Jean-Philippe Lang | * Item 3 |
245 | 28 | Jean-Philippe Lang | </pre> |
246 | 28 | Jean-Philippe Lang | |
247 | 28 | Jean-Philippe Lang | displays: |
248 | 1 | Jean-Philippe Lang | |
249 | 28 | Jean-Philippe Lang | * Item 1 |
250 | 28 | Jean-Philippe Lang | * Item 2 |
251 | 29 | Eric Gallimore | ** Item 21 |
252 | 28 | Jean-Philippe Lang | ** Item 22 |
253 | 28 | Jean-Philippe Lang | * Item 3 |
254 | 1 | Jean-Philippe Lang | |
255 | 1 | Jean-Philippe Lang | h3. Ordered lists |
256 | 1 | Jean-Philippe Lang | |
257 | 28 | Jean-Philippe Lang | <pre> |
258 | 28 | Jean-Philippe Lang | # Item 1 |
259 | 28 | Jean-Philippe Lang | # Item 2 |
260 | 28 | Jean-Philippe Lang | # Item 3 |
261 | 28 | Jean-Philippe Lang | ## Item 3.1 |
262 | 28 | Jean-Philippe Lang | ## Item 3.2 |
263 | 1 | Jean-Philippe Lang | </pre> |
264 | 29 | Eric Gallimore | |
265 | 29 | Eric Gallimore | displays: |
266 | 1 | Jean-Philippe Lang | |
267 | 20 | Kirill Ponomarev | # Item 1 |
268 | 20 | Kirill Ponomarev | # Item 2 |
269 | 20 | Kirill Ponomarev | # Item 3 |
270 | 21 | Andrew Chaika | ## Item 3.1 |
271 | 21 | Andrew Chaika | ## Item 3.2 |
272 | 21 | Andrew Chaika | |
273 | 1 | Jean-Philippe Lang | h3. Tables |
274 | 1 | Jean-Philippe Lang | |
275 | 1 | Jean-Philippe Lang | <pre> |
276 | 91 | Filou Centrinov | |_.UserID |_.Name |_.Group |_. attribute list | |
277 | 91 | Filou Centrinov | |Starting with | a | simple |row | |
278 | 91 | Filou Centrinov | |\3=.IT |<. align left | |
279 | 91 | Filou Centrinov | |1 |Artur Pirozhkov |/2.Users |>. align right | |
280 | 91 | Filou Centrinov | |2 |Vasya Rogov |=. center | |
281 | 91 | Filou Centrinov | |3 |John Smith |Admin |
282 | 91 | Filou Centrinov | (root) |^. valign top | |
283 | 91 | Filou Centrinov | |4 |- |Nobody |
284 | 91 | Filou Centrinov | (anonymous) |~. valign bottom | |
285 | 20 | Kirill Ponomarev | </pre> |
286 | 21 | Andrew Chaika | |
287 | 1 | Jean-Philippe Lang | displays (all multiple spaces are replaced by 1 space): |
288 | 1 | Jean-Philippe Lang | |
289 | 91 | Filou Centrinov | |_.UserID |_.Name |_.Group |_. attribute list | |
290 | 91 | Filou Centrinov | |Starting with | a | simple |row | |
291 | 91 | Filou Centrinov | |\3=.IT |<. align left | |
292 | 91 | Filou Centrinov | |1 |Artur Pirozhkov |/2.Users |>. align right | |
293 | 91 | Filou Centrinov | |2 |Vasya Rogov |=. center | |
294 | 91 | Filou Centrinov | |3 |John Smith |Admin |
295 | 91 | Filou Centrinov | (root) |^. valign top | |
296 | 91 | Filou Centrinov | |4 |- |Nobody |
297 | 91 | Filou Centrinov | (anonymous) |~. valign bottom | |
298 | 1 | Jean-Philippe Lang | |
299 | 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: |
300 | 78 | Thomas Themel | |
301 | 78 | Thomas Themel | |_.Input |_. Output| |
302 | 78 | Thomas Themel | |*<notextile><notextile>|</notextile></notextile>*|<notextile>|</notextile>| |
303 | 78 | Thomas Themel | |
304 | 1 | Jean-Philippe Lang | h3. Table of content |
305 | 1 | Jean-Philippe Lang | |
306 | 1 | Jean-Philippe Lang | <pre><code>{{toc}} => left aligned toc |
307 | 1 | Jean-Philippe Lang | {{>toc}} => right aligned toc |
308 | 1 | Jean-Philippe Lang | </code></pre> |
309 | 7 | Jean-Philippe Lang | |
310 | 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. |
311 | 79 | Mike Bison | |
312 | 79 | Mike Bison | Example: |
313 | 79 | Mike Bison | |
314 | 79 | Mike Bison | <pre><code> |
315 | 79 | Mike Bison | h1. headLineOne |
316 | 79 | Mike Bison | |
317 | 79 | Mike Bison | h2. something |
318 | 79 | Mike Bison | |
319 | 79 | Mike Bison | {{toc}} |
320 | 79 | Mike Bison | |
321 | 79 | Mike Bison | h2. something more |
322 | 79 | Mike Bison | </code></pre> |
323 | 79 | Mike Bison | |
324 | 7 | Jean-Philippe Lang | h2. Macros |
325 | 7 | Jean-Philippe Lang | |
326 | 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: |
327 | 7 | Jean-Philippe Lang | |
328 | 7 | Jean-Philippe Lang | {{macro_list}} |
329 | 1 | Jean-Philippe Lang | |
330 | 4 | Jean-Philippe Lang | h2. Code highlighting |
331 | 51 | Graham King | |
332 | 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. |
333 | 1 | Jean-Philippe Lang | |
334 | 1 | Jean-Philippe Lang | You can highlight code in your wiki page using this syntax: |
335 | 1 | Jean-Philippe Lang | |
336 | 49 | Dave Clements | <pre><code><pre><code class="ruby"> |
337 | 1 | Jean-Philippe Lang | Place your code here. |
338 | 40 | Mischa The Evil | </code></pre> |
339 | 1 | Jean-Philippe Lang | </code></pre> |
340 | 1 | Jean-Philippe Lang | |
341 | 1 | Jean-Philippe Lang | Example: |
342 | 1 | Jean-Philippe Lang | |
343 | 1 | Jean-Philippe Lang | <pre><code class="ruby"> |
344 | 1 | Jean-Philippe Lang | # The Greeter class |
345 | 1 | Jean-Philippe Lang | class Greeter |
346 | 1 | Jean-Philippe Lang | def initialize(name) |
347 | 1 | Jean-Philippe Lang | @name = name.capitalize |
348 | 1 | Jean-Philippe Lang | end |
349 | 1 | Jean-Philippe Lang | |
350 | 1 | Jean-Philippe Lang | def salute |
351 | 1 | Jean-Philippe Lang | puts "Hello #{@name}!" |
352 | 1 | Jean-Philippe Lang | end |
353 | 40 | Mischa The Evil | end |
354 | 52 | Vladimir Vasilkin | </code></pre> |
355 | 52 | Vladimir Vasilkin | |
356 | 52 | Vladimir Vasilkin | h2. Translation |
357 | 1 | Jean-Philippe Lang | |
358 | 75 | Caille Rotie | Note that the following translations may not be up to date. Please refer to the original english documentation if needed. |
359 | 52 | Vladimir Vasilkin | |
360 | 75 | Caille Rotie | * [[RusRedmineTextFormatting|Перевод на русский]] |
361 | 75 | Caille Rotie | * [[FrRedmineWikiFormatting|French]] |