Project

General

Profile

RedmineTextFormattingMarkdown » History » Version 30

Jan K., 2021-08-05 17:14

1 1 Hans Ginzel
h1. Markdown formatting
2
3 17 Hiroo Hayashi
Below is *Markdown* formatting. For *Textile* formatting see [[RedmineTextFormattingTextile|Textile formatting]].
4
Currently HTML tags are not allowed by default. See #15520 and #20497 for details.  For other limitations of the current *Markdown* formatting see #16373 and #21443.
5 1 Hans Ginzel
6
{{>TOC}}
7
8
h2. Links
9
10
h3. Redmine links
11
12 16 Hiroo Hayashi
{{include(RedmineTextFormattingRedmineLinks)}}
13 1 Hans Ginzel
14
h3. External links
15
16 21 Go MAEDA
URLs (http, https, ftp and ftps) are automatically turned into clickable links: 
17 17 Hiroo Hayashi
18 1 Hans Ginzel
* *http://www.redmine.org* -- External link to the redmine website: http://www.redmine.org
19
20 21 Go MAEDA
URLs can also use different text than the link itself:
21 17 Hiroo Hayashi
22 2 Hans Ginzel
* *[Redmine web site](http://www.redmine.org)* -- External link with different text: "Redmine web site":http://www.redmine.org
23 22 Ivan Tsybanenko
* *[![Redmine web site](http://www.redmine.org/attachments/7069/Redmine_logo.png)](http://www.redmine.org)* -- External image with a title that links to an URL: 
24 1 Hans Ginzel
25
p=. !http://www.redmine.org/attachments/7069/Redmine_logo.png(Redmine web site)!:http://www.redmine.org
26
27
h3. Email addresses
28
29
Email addresses are automatically turned into clickable links:
30
31 17 Hiroo Hayashi
* *someone@foo.bar* -- Link to an email address: someone@foo.bar
32 3 Hans Ginzel
* *[Email someone](mailto:someone@foo.bar)* -- Email link with different text: "Email someone":mailto:someone@foo.bar
33 1 Hans Ginzel
34
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.
35 3 Hans Ginzel
* *[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
36
* *[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
37
* *[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
38 1 Hans Ginzel
39
h2. Text formatting
40 4 Hans Ginzel
41 1 Hans Ginzel
For things such as headlines, bold, tables, lists, Redmine supports "Markdown syntax":http://en.wikipedia.org/wiki/Markdown.  See http://daringfireball.net/projects/markdown/syntax, http://agea.github.io/tutorial.md/, http://stackoverflow.com/editing-help for information on using any of these features.  A few samples are included below, but the engine is capable of much more of that. For conversions see "Pandoc":http://pandoc.org. The "Redcarpet formatter":https://github.com/alminium/redmine_redcarpet_formatter is used.
42
43
h3. Acronym
44
45 17 Hiroo Hayashi
Not supported by Markdown
46 1 Hans Ginzel
47
h3. Font style
48
49
<pre><code>* **bold** __bold__
50
* *italic* _italic_
51
* ***bold italic*** ___bold italic___
52 5 Hans Ginzel
* <ins>underline</ins>
53
* <del>strike through</del>
54
* Plain <sup>superscript</sup>
55
* Plain <sub>subscript</sub>
56
* `inline monospace`
57 1 Hans Ginzel
* normal **bold** _italic_ normal;E=mc<sup>2</sup>
58 19 Hiroo Hayashi
* normal<strong>bold</strong><em>italic</em>normal;E=mc<sup>2</sup>
59 17 Hiroo Hayashi
* Escaping: \*\*bold\*\* \_italic\_ \`inlinemono\`
60
* <notextile><pre>**some lines**      some [link](http://www.redmine.org)</pre></notextile>
61
* <notextile><pre>\*\*some lines\*\*      some \[link](http\://www\.redmine\.org)</pre></notextile>
62 1 Hans Ginzel
</code></pre>
63
64 17 Hiroo Hayashi
displays:
65 1 Hans Ginzel
66
 * *bold* *bold*
67
 * _italic_ _italic_
68
 * *_bold italic_* *_bold italic_*
69 5 Hans Ginzel
 * +underline+
70
 * -strike-through-
71 1 Hans Ginzel
 * Plain ^superscript^
72
 * Plain ~subscript~
73
 * @inline monospace@
74 17 Hiroo Hayashi
 * normal *bold* _italic_ normal;E=mc<notextile></notextile>^2^
75 1 Hans Ginzel
 * normal<notextile></notextile>*bold*<notextile></notextile>_italic_<notextile></notextile>normal;E=mc<notextile></notextile>^2^
76 23 Go MAEDA
 * Escaping: <notextile>**bold** _italic_ `inlinemono`</notextile> 
77 1 Hans Ginzel
 * <pre><notextile></notextile>*some lines*      some "link":http://www.redmine.org</pre>
78 17 Hiroo Hayashi
 * <pre>**some lines**      some [link](http://www.redmine.org)</pre>
79 1 Hans Ginzel
80 19 Hiroo Hayashi
**Note:** HTML tags need to be allowed to use the HTML tags (<strong>, <em>, <ins>, <del>, <sup>, <sub>).  See #15520-16 and #15520-17 for details.
81 1 Hans Ginzel
82 17 Hiroo Hayashi
h3. Color
83
84
<pre><code><notextile>* <span style="color:red">red</span> <span style="color:green">green</span> <span style="color:yellow">yellow</span> <span style="color:#82B6E1">blue'ish</span>
85
* <span style="color:red">red</span><span style="color:green">green</span><span style="color:yellow">yellow</span><span style="color:#82B6E1">blue'ish</span>
86
* <span style="background-color:lightgreen">Lightgreen Background</span> <span style="background-color:yellow">Yellow Background</span>
87
* <span style="background-color:lightgreen">Lightgreen Background</span><span style="background-color:yellow">Yellow Background</span>
88 1 Hans Ginzel
</notextile></code></pre>
89
90 17 Hiroo Hayashi
displays:
91 1 Hans Ginzel
92
 * %{color:red}red% %{color:green}green% %{color:yellow}yellow% %{color:#82B6E1}blue'ish%
93
 * %{color:red}red%<notextile></notextile>%{color:green}green%<notextile></notextile>%{color:yellow}yellow%<notextile></notextile>%{color:#82B6E1}blue'ish%
94
 * %{background:lightgreen}Lightgreen Background% %{background:yellow}Yellow Background%
95
 * %{background:lightgreen}Lightgreen Background%<notextile></notextile>%{background:yellow}Yellow Background%
96
97 17 Hiroo Hayashi
**Note:** HTML tags need to be allowed to use the HTML tag (<span>).  See #15520-16 and #15520-17 for details.
98 26 Tuan-Tu Tran
More explicitly, you need to patch redmine, as explained in this "post":https://www.redmine.org/boards/2/topics/56096?r=57052#message-57052
99
100 17 Hiroo Hayashi
101 1 Hans Ginzel
h3. Inline images
102
103
* *![](image_url)* displays an image located at image_url (textile syntax)
104 17 Hiroo Hayashi
* *![alt text](image_url "optional title")* displays an image with an alt/title attribute
105
* *[![](image_url)](URL)* displays an image located at image_url with link URL added
106 1 Hans Ginzel
107 17 Hiroo Hayashi
If you have an image attached to your wiki page, it can be displayed inline using its filename: *![](attached_image.png)*.
108 1 Hans Ginzel
109 17 Hiroo Hayashi
As of this writing, Markdown has no syntax for specifying the dimensions of an image; if this is important to you, you can use regular HTML <img> tags.
110 1 Hans Ginzel
111 17 Hiroo Hayashi
* <img style="float:right" src="URL"/>
112
* <img style="width:100%" src="attached_image.png"/>
113
114
**Note:** HTML tags need to be allowed to use the HTML tag (<img>).  See #15520-16 and #15520-17 for details.
115
116
117 1 Hans Ginzel
h3. Headings
118
119
<pre><code># Heading
120
121
## Subheading
122
123
### Subheading
124
125
or
126
127
Heading
128
=======
129
130
Subheading
131
----------
132
</code></pre>
133
134
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
135
136
h3. Paragraphs
137
138 17 Hiroo Hayashi
Markdown does not support alignment of a paragraph.  Use &lt;div> tags if you need it.
139 1 Hans Ginzel
140 17 Hiroo Hayashi
<pre><code>left aligned
141
<div style="padding-left:1em;">
142
left ident 1em
143
</div>
144 1 Hans Ginzel
145 17 Hiroo Hayashi
<div style="padding-left:2em;">
146
left ident 2em
147
as well as for following lines
148
</div>
149 1 Hans Ginzel
150 17 Hiroo Hayashi
<div style="text-align:right;">
151
right aligned
152
</div>
153 1 Hans Ginzel
154 17 Hiroo Hayashi
<div style="padding-right:3em;text-align:right;">
155
right ident 3em
156
</div>
157 1 Hans Ginzel
158 17 Hiroo Hayashi
<div style="text-align:center;">
159
This is centered paragraph.
160
</div></code></pre>
161 1 Hans Ginzel
162 17 Hiroo Hayashi
displays;
163 1 Hans Ginzel
164 17 Hiroo Hayashi
p. left aligned
165 1 Hans Ginzel
166 17 Hiroo Hayashi
p(. left ident 1em
167 1 Hans Ginzel
168 17 Hiroo Hayashi
p((. left ident 2em
169
as well as for following lines
170 1 Hans Ginzel
171 17 Hiroo Hayashi
p>. right aligned
172 1 Hans Ginzel
173 17 Hiroo Hayashi
p)))>. right ident 3em
174 1 Hans Ginzel
175 17 Hiroo Hayashi
p=. This is centered paragraph.
176 1 Hans Ginzel
177 17 Hiroo Hayashi
**Note:** HTML tags need to be allowed to use the HTML tags (<div>).  See #15520-16 and #15520-17 for details.
178 1 Hans Ginzel
179 17 Hiroo Hayashi
h3. Horizontal rule 
180 1 Hans Ginzel
181 17 Hiroo Hayashi
@----@
182 1 Hans Ginzel
183 17 Hiroo Hayashi
displays: 
184 1 Hans Ginzel
185 17 Hiroo Hayashi
----
186 1 Hans Ginzel
187 17 Hiroo Hayashi
h3. Preformatted Text
188 1 Hans Ginzel
189 17 Hiroo Hayashi
<pre> <pre>**Your text won't become bold**</pre> </pre>
190
191
displays:
192
193
<pre>**Your text won't become bold**</pre>
194
195
h3. Blockquotes
196
197
You can use > at the beginning of each line and stack them for nested quotes:
198
199 1 Hans Ginzel
<pre>
200
>> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
201
>> To go live, all you need to add is a database and a web server.
202
> Great!
203
</pre>
204
205 17 Hiroo Hayashi
displays:
206 1 Hans Ginzel
207
>>  Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
208 8 Hans Ginzel
>>  To go live, all you need to add is a database and a web server.
209
> Great!
210 1 Hans Ginzel
211
h3. Unordered lists
212
213 17 Hiroo Hayashi
Unordered lists use asterisks (@*@), pluses (@+@), and hyphens (@-@) as list markers
214
215 1 Hans Ginzel
<pre>
216
* Item 1
217
* Item 2
218
  * Item 21 (two spaces indentation)
219
  * Item 22
220
* Item 3
221
</pre>
222
223
displays:
224
225
* Item 1
226
* Item 2
227
** Item 21
228 10 Hans Ginzel
** Item 22
229
* Item 3
230 1 Hans Ginzel
231
h3. Ordered lists
232
233 29 Jan K.
Ordered lists use numbers followed by periods. 
234 17 Hiroo Hayashi
235 1 Hans Ginzel
<pre>
236 17 Hiroo Hayashi
1. Item 1
237
3. Item 2
238
2. Item 3
239
  1. Item 3.1 (two spaces)
240 1 Hans Ginzel
  1. Item 3.2
241 29 Jan K.
</pre>
242
243
244 1 Hans Ginzel
245
displays:
246
247
# Item 1
248
# Item 2
249
# Item 3
250
## Item 3.1
251
## Item 3.2
252
253 17 Hiroo Hayashi
Note that the actual numbers you use to mark the list have no effect on the output.
254
255 1 Hans Ginzel
h3. Tables
256
257 27 Go MAEDA
<pre>
258
|UserID (align right)|Name (align left)|Group (align center)|
259
|-------------------:|:----------------|:------------------:|
260
|2                   |John Smith       |                    |
261
|3                   |Dave Lopper      |A Team              |
262
|4                   |Robert Hill      |B Team              |
263
</pre>
264 1 Hans Ginzel
265 27 Go MAEDA
displays (all multiple spaces are replaced by 1 space):
266 1 Hans Ginzel
267 27 Go MAEDA
|_>. UserID (align right)|_<. Name (align left)|_=. Group (align center)|
268
|>. 2                    |<. John Smith        |                        |
269
|>. 3                    |<. Dave Lopper       |_=. A Team              |
270
|>. 4                    |<. Robert Hill       |_=. B Team              |
271 17 Hiroo Hayashi
272 1 Hans Ginzel
273
h3. Table of content
274
275
<pre><code>{{toc}} => left aligned toc
276
{{>toc}} => right aligned toc
277
</code></pre>
278
279 15 Hugues C.
Please keep in mind, that the toc-tag needs an empty line above and underneath it and no other text before and after it.
280 1 Hans Ginzel
281 11 Hans Ginzel
Example:
282
283 17 Hiroo Hayashi
<pre><code>h1. headLineOne
284 11 Hans Ginzel
285
h2. something
286 1 Hans Ginzel
287
{{toc}}
288
289 11 Hans Ginzel
h2. something more
290
</code></pre>
291
292 20 Dietmar H
h3. Footnotes
293
294
A footnote works very much like a reference-style link: it consists of a marker next to the text, e.g. <pre>This is a sentence.[^1]</pre> and a footnote definition on its own line anywhere within the document, e.g. <pre>[^1]: This is a footnote.</pre>
295
296
297 1 Hans Ginzel
h2. Macros
298
299
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 also includes a few builtin macros:
300
301
{{macro_list}}
302
303
h2. Code highlighting
304
305 24 Go MAEDA
Default code highlightment relies on "Rouge":http://rouge.jneen.net/, a syntax highlighting library written in pure Ruby. It supports many commonly used languages such as *c*, *cpp* (c++), *csharp* (c#, cs), *css*, *diff* (patch, udiff), *go* (golang), *groovy*, *html*, *java*, *javascript* (js), *kotlin*, *objective_c* (objc), *perl* (pl), *php*, *python* (py), *r*, *ruby* (rb), *sass*, *scala*, *shell* (bash, zsh, ksh, sh), *sql*, *swift*, *xml* and *yaml* (yml) languages, where the names inside parentheses are aliases. Please refer to [[RedmineCodeHighlightingLanguages]] for the full list of supported languages.
306 1 Hans Ginzel
307
You can highlight code in your wiki page using this syntax:
308
309
<pre><code>``` ruby
310
Place your code here.
311
```</code></pre>
312
313
Example:
314
315
<pre><code class="ruby">
316
# The Greeter class
317
class Greeter
318
  def initialize(name)
319
    @name = name.capitalize
320
  end
321
 
322
  def salute
323
    puts "Hello #{@name}!"
324
  end
325
end
326
</code></pre>
327
328
h2. Translation
329
330
Note that the following translations may not be up to date. Please refer to the original english documentation if needed.
331
332
* [[BrRedmineWikiFormatting|Português Brasileiro]]
333
* [[RusRedmineTextFormatting|Русский]]
334
* [[FrRedmineWikiFormatting|French]]
335 28 C S
* [[DeRedmineTextFormattingMarkdown|Deutsch]]
336 1 Hans Ginzel
* [[KoreanWikiFormatting|Korean]]
337
* [[TurkishWikiFormatting|Türkçe]]
338
* [[TraditionalChineseWikiFormatting|繁體中文]]
339
* [[SimplifiedChineseWikiFormatting|简体中文]]