From: Marius Balteanu
Date: Mon, 19 Feb 2024 20:54:01 +0000 (+0000)
Subject: * Remove languages from wiki syntax help files that are identical with en language.
X-Git-Tag: 6.0.0~409
X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=56f3a4dac3fab4eaef841e944b85ccb2b41f9076;p=redmine.git
* Remove languages from wiki syntax help files that are identical with en language.
* Fall back to the english help page if there is none for the current language.
(#39111, #40137).
git-svn-id: https://svn.redmine.org/redmine/trunk@22721 e93f8b46-1217-0410-a6f0-8f06a7374b81
---
diff --git a/app/controllers/help_controller.rb b/app/controllers/help_controller.rb
index 348dd5673..552dd988f 100644
--- a/app/controllers/help_controller.rb
+++ b/app/controllers/help_controller.rb
@@ -20,6 +20,12 @@
class HelpController < ApplicationController
def show_wiki_syntax
type = params[:type].nil? ? "" : "#{params[:type]}_"
- render :template => "help/wiki_syntax/#{Setting.text_formatting}/#{current_language.to_s}/wiki_syntax_#{type}#{Setting.text_formatting}", :layout => nil
+
+ lang = current_language.to_s
+ template = "help/wiki_syntax/#{Setting.text_formatting}/#{lang}/wiki_syntax_#{type}#{Setting.text_formatting}"
+ unless lookup_context.exists?(template)
+ lang = "en"
+ end
+ render template: "help/wiki_syntax/#{Setting.text_formatting}/#{lang}/wiki_syntax_#{type}#{Setting.text_formatting}", :layout => nil
end
end
diff --git a/app/views/help/wiki_syntax/markdown/ar/wiki_syntax_detailed_markdown.html b/app/views/help/wiki_syntax/markdown/ar/wiki_syntax_detailed_markdown.html
deleted file mode 100644
index cd359a542..000000000
--- a/app/views/help/wiki_syntax/markdown/ar/wiki_syntax_detailed_markdown.html
+++ /dev/null
@@ -1,341 +0,0 @@
-
-
-
-RedmineWikiFormatting (Markdown)
-
-
-
-
-
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Markdown syntax. See http://daringfireball.net/projects/markdown/syntax for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
![](image_url) displays an image located at image_url (markdown syntax)
-
If you have an image attached to your wiki page, it can be displayed inline using its filename: ![](attached_image)
-
Images in your computer's clipboard can be pasted directly using Ctrl-v or Command-v (note that Internet Explorer is not supported).
-
Image files can be dragged onto the text area in order to be uploaded and embedded.
-
-
-
Headings
-
-
-# Heading
-## Subheading
-### Subsubheading
-
-
-
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Blockquotes
-
-
Start the paragraph with >
-
-
-> Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-``` ruby
- Place your code here.
-```
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-
For things such as headlines, bold, tables, lists, Redmine supports Textile syntax. See http://en.wikipedia.org/wiki/Textile_(markup_language) for information on using any of these features. A few samples are included below, but the engine is capable of much more of that.
Redmine assigns an anchor to each of those headings thus you can link to them with "#Heading", "#Subheading" and so forth.
-
-
-
Paragraphs
-
-
-p>. right aligned
-p=. centered
-
-
-
This is a centered paragraph.
-
-
-
Blockquotes
-
-
Start the paragraph with bq.
-
-
-bq. Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern.
-To go live, all you need to add is a database and a web server.
-
-
-
Display:
-
-
-
Rails is a full-stack framework for developing database-backed web applications according to the Model-View-Control pattern. To go live, all you need to add is a database and a web server.
-
-
-
-
Table of content
-
-
-{{toc}} => left aligned toc
-{{>toc}} => right aligned toc
-
-
-
Horizontal Rule
-
-
----
-
-
-
Macros
-
-
Redmine has the following builtin macros:
-
-
-
-
hello_world
-
Sample macro.
-
-
macro_list
-
Displays a list of all available macros, including description if available.
-
-
child_pages
-
Displays a list of child pages. With no argument, it displays the child pages of the current wiki page. Examples:
-
{{child_pages}} -- can be used from a wiki page only
-{{child_pages(depth=2)}} -- display 2 levels nesting only
-
-
include
-
Include a wiki page. Example:
-
{{include(Foo)}}
-
or to include a page of a specific project wiki:
-
{{include(projectname:Foo)}}
-
-
collapse
-
Inserts of collapsed block of text. Example:
-
{{collapse(View details...)
-This is a block of text that is collapsed by default.
-It can be expanded by clicking a link.
-}}
-
-
thumbnail
-
Displays a clickable thumbnail of an attached image. Examples:
Default code highlighting relies on Rouge, a pure Ruby code highlighter. Rouge 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 - the names inside parentheses are aliases. Please refer to the list of languages supported by Redmine code highlighter.
-
-
You can highlight code at any place that supports wiki formatting using this syntax (note that the language name or alias is case-insensitive):
-
-
-<pre><code class="ruby">
- Place your code here.
-</code></pre>
-
-
-
Example:
-
-
# The Greeter class
-classGreeter
- definitialize(name)
- @name=name.capitalize
- end
-
- defsalute
- puts"Hello #{@name}!"
- end
-end
-