From d6fd2ccc38f4e66c3887f152a16adc9ba9d14817 Mon Sep 17 00:00:00 2001 From: Katsuya HIDAKA Date: Mon, 15 Apr 2024 10:03:05 +0900 Subject: [PATCH 1/3] Fix incorrect icon image paths on Markdown help page --- .../markdown/bg/wiki_syntax_markdown.html.erb | 18 ++++++------ .../markdown/ca/wiki_syntax_markdown.html.erb | 28 +++++++++---------- .../markdown/cs/wiki_syntax_markdown.html.erb | 28 +++++++++---------- .../markdown/de/wiki_syntax_markdown.html.erb | 26 ++++++++--------- .../markdown/en/wiki_syntax_markdown.html.erb | 18 ++++++------ .../es-pa/wiki_syntax_markdown.html.erb | 18 ++++++------ .../markdown/es/wiki_syntax_markdown.html.erb | 18 ++++++------ .../markdown/fr/wiki_syntax_markdown.html.erb | 18 ++++++------ .../markdown/gl/wiki_syntax_markdown.html.erb | 18 ++++++------ .../markdown/ja/wiki_syntax_markdown.html.erb | 26 ++++++++--------- .../markdown/ko/wiki_syntax_markdown.html.erb | 18 ++++++------ .../markdown/nl/wiki_syntax_markdown.html.erb | 18 ++++++------ .../pt-br/wiki_syntax_markdown.html.erb | 18 ++++++------ .../ta-in/wiki_syntax_markdown.html.erb | 18 ++++++------ .../markdown/uk/wiki_syntax_markdown.html.erb | 26 ++++++++--------- .../zh-tw/wiki_syntax_markdown.html.erb | 26 ++++++++--------- 16 files changed, 170 insertions(+), 170 deletions(-) diff --git a/app/views/help/wiki_syntax/markdown/bg/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/bg/wiki_syntax_markdown.html.erb index 81b404e92..0c75cb7e2 100644 --- a/app/views/help/wiki_syntax/markdown/bg/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/bg/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ Font Styles (" target="_blank">more) <%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Strong**Strong <%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Italic*Italic -<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline +<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline <%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Deleted~~Deleted <%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code <%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 lines
 of code
``` @@ -24,7 +24,7 @@ Highlighted code (" target="_blank">more | supported languages) -<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Вграден код" }) %>``` ruby
3.times do
  puts 'Hello'
end
``` +<%= image_tag("jstoolbar/bt_precode.png", { alt: "Вграден код" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
 
 Lists
-<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
-<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
+<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
+<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Headings (" target="_blank">more) -<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

-<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

-<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

+<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

+<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

+<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more) http://foo.barhttp://foo.bar [Foo](http://foo.bar)Foo Redmine links (" target="_blank">more) -<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page +<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page Issue #12Issue #12 ##12Bug #12: The issue subject Revision r43Revision r43 @@ -53,7 +53,7 @@ source:some/filesource:some/file Inline images (" target="_blank">more) -<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url) +<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url) ![](attached_image) Tables diff --git a/app/views/help/wiki_syntax/markdown/ca/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/ca/wiki_syntax_markdown.html.erb index e2375f0fc..706afa38e 100644 --- a/app/views/help/wiki_syntax/markdown/ca/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/ca/wiki_syntax_markdown.html.erb @@ -11,12 +11,12 @@ - - - - - - + + + + + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/cs/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/cs/wiki_syntax_markdown.html.erb index 055eea764..385b2a38c 100644 --- a/app/views/help/wiki_syntax/markdown/cs/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/cs/wiki_syntax_markdown.html.erb @@ -11,12 +11,12 @@
Font Styles (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_strong.png", { alt: "Negreta" }) %>**Negreta**Negreta
<%= image_tag("images/jstoolbar/bt_em.png", { alt: "Cursiva" }) %>*Cursiva*Cursiva
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("images/jstoolbar/bt_del.png", { alt: "Eliminat" }) %>~~Eliminat~~Eliminat
<%= image_tag("images/jstoolbar/bt_code.png", { alt: "Codi en línia" }) %>`Codi en línia`Codi en línia
<%= image_tag("images/jstoolbar/bt_pre.png", { alt: "Linies de codi" }) %>```
 linies
 de codi
```
+
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Negreta" }) %>**Negreta**Negreta
<%= image_tag("jstoolbar/bt_em.png", { alt: "Cursiva" }) %>*Cursiva*Cursiva
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_del.png", { alt: "Eliminat" }) %>~~Eliminat~~Eliminat
<%= image_tag("jstoolbar/bt_code.png", { alt: "Codi en línia" }) %>`Codi en línia`Codi en línia
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Linies de codi" }) %>```
 linies
 de codi
```
  linies
  de codi
@@ -24,7 +24,7 @@
 
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Llistes
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Llista desordenada" }) %>* Article 1
  * Sub
* Article 2
  • Article 1
    • Sub
  • Article 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Llista Ordenada" }) %>1. Article 1
   1. Sub
2. Article 2
  1. Article 1
    1. Sub
  2. Article 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Llista desordenada" }) %>* Article 1
  * Sub
* Article 2
  • Article 1
    • Sub
  • Article 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Llista Ordenada" }) %>1. Article 1
   1. Sub
2. Article 2
  1. Article 1
    1. Sub
  2. Article 2
Capçaleres (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Encapçament 1" }) %># Títol 1

Títol 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Encapçament 2" }) %>## Títol 2

Títol 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Encapçament 3" }) %>### Títol 3

Títol 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Encapçament 1" }) %># Títol 1

Títol 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Encapçament 2" }) %>## Títol 2

Títol 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Encapçament 3" }) %>### Títol 3

Títol 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link a la pagina Wiki" }) %>[[Pagina Wiki]]Pagina Wiki
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link a la pagina Wiki" }) %>[[Pagina Wiki]]Pagina Wiki
Assumpte #12Assumpte #12
##12Bug #12: The issue subject
Revisió r43Revisió r43
source:some/filesource:some/file
Imatges (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Imatge" }) %>![](imatge_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Imatge" }) %>![](imatge_url)
![](imatge_adjunta)
Taules
- - - - - - + + + + + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/de/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/de/wiki_syntax_markdown.html.erb index 44c0dc527..83119def1 100644 --- a/app/views/help/wiki_syntax/markdown/de/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/de/wiki_syntax_markdown.html.erb @@ -11,12 +11,12 @@
Styly písma (" target="_blank">více)
<%= image_tag("images/jstoolbar/bt_strong.png", { alt: "tučný" }) %>**tučný**tučný
<%= image_tag("images/jstoolbar/bt_em.png", { alt: "kurzíva" }) %>*kurzíva*kurzíva
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "podtržený" }) %>_podtržený_podtržený
<%= image_tag("images/jstoolbar/bt_del.png", { alt: "smazaný" }) %>~~přeškrtnutý~~Přeškrtnutý
<%= image_tag("images/jstoolbar/bt_code.png", { alt: "vnořený kód" }) %>`vnořený kód`vnořený kód
<%= image_tag("images/jstoolbar/bt_pre.png", { alt: "předformátovaný text" }) %>```
 řádky
 kódu
```
+
<%= image_tag("jstoolbar/bt_strong.png", { alt: "tučný" }) %>**tučný**tučný
<%= image_tag("jstoolbar/bt_em.png", { alt: "kurzíva" }) %>*kurzíva*kurzíva
<%= image_tag("jstoolbar/bt_ins.png", { alt: "podtržený" }) %>_podtržený_podtržený
<%= image_tag("jstoolbar/bt_del.png", { alt: "smazaný" }) %>~~přeškrtnutý~~Přeškrtnutý
<%= image_tag("jstoolbar/bt_code.png", { alt: "vnořený kód" }) %>`vnořený kód`vnořený kód
<%= image_tag("jstoolbar/bt_pre.png", { alt: "předformátovaný text" }) %>```
 řádky
 kódu
```
  řádky
  kódu
@@ -24,7 +24,7 @@
 
Zvýrazněný kód (" target="_blank">více | podporované jazyky)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Ahoj'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Ahoj'
end
```
3.times do
   puts 'Ahoj'
 end
@@ -32,20 +32,20 @@
 
Seznamy
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Nesetříděný seznam" }) %>* Položka 1
  * Pod
* Položka 2
  • Položka 1
    • Pod
  • Položka 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Setříděný seznam" }) %>1. Položka 1
   1. Pod
2. Položka 2
  1. Položka 1
    1. Pod
  2. Položka 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Nesetříděný seznam" }) %>* Položka 1
  * Pod
* Položka 2
  • Položka 1
    • Pod
  • Položka 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Setříděný seznam" }) %>1. Položka 1
   1. Pod
2. Položka 2
  1. Položka 1
    1. Pod
  2. Položka 2
Nadpisy (" target="_blank">více)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Nadpis 1

Nadpis 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Nadpis 2

Nadpis 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Nadpis 3

Nadpis 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Nadpis 1

Nadpis 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Nadpis 2

Nadpis 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Nadpis 3

Nadpis 3

Odkazy (" target="_blank">more)
http://foo.barhttp://foo.bar
[Odkaz](http://foo.bar)Foo
Redmine odkazy (" target="_blank">více)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki stránka]]Wiki stránka
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki stránka]]Wiki stránka
Úkol #12Úkol #12
##12Úkol #12: Předmět úkolu
Revize r43Revize r43
source:some/filesource:some/file
Vnořené obrázky (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Obrázek" }) %>![](url_obrázku)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Obrázek" }) %>![](url_obrázku)
![](vnořený_obrázek)
Tabulky
- - - - + + + + - - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/en/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/en/wiki_syntax_markdown.html.erb index caf6a7c54..38cdc237f 100644 --- a/app/views/help/wiki_syntax/markdown/en/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/en/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/es-pa/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/es-pa/wiki_syntax_markdown.html.erb index 505b3ab67..6f4ece753 100644 --- a/app/views/help/wiki_syntax/markdown/es-pa/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/es-pa/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/es/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/es/wiki_syntax_markdown.html.erb index 505b3ab67..6f4ece753 100644 --- a/app/views/help/wiki_syntax/markdown/es/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/es/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/fr/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/fr/wiki_syntax_markdown.html.erb index 89298f7e2..67d29bfda 100644 --- a/app/views/help/wiki_syntax/markdown/fr/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/fr/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/gl/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/gl/wiki_syntax_markdown.html.erb index 505b3ab67..6f4ece753 100644 --- a/app/views/help/wiki_syntax/markdown/gl/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/gl/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/ja/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/ja/wiki_syntax_markdown.html.erb index e0ef6022d..6deb4d388 100644 --- a/app/views/help/wiki_syntax/markdown/ja/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/ja/wiki_syntax_markdown.html.erb @@ -11,11 +11,11 @@
Schriftarten (" target="_blank">mehr)
<%= image_tag("images/jstoolbar/bt_strong.png", { alt: "Fett" }) %>**Fett**Fett
<%= image_tag("images/jstoolbar/bt_em.png", { alt: "Kursiv" }) %>*Kursiv*Kursiv
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Unterstrichen" }) %>_Unterstrichen_Unterstrichen
<%= image_tag("images/jstoolbar/bt_del.png", { alt: "Durchgestrichen" }) %>~~Durchgestrichen~~Durchgestrichen
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Fett" }) %>**Fett**Fett
<%= image_tag("jstoolbar/bt_em.png", { alt: "Kursiv" }) %>*Kursiv*Kursiv
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Unterstrichen" }) %>_Unterstrichen_Unterstrichen
<%= image_tag("jstoolbar/bt_del.png", { alt: "Durchgestrichen" }) %>~~Durchgestrichen~~Durchgestrichen
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code
<%= image_tag("images/jstoolbar/bt_pre.png", { alt: "Vorformatiertert Text" }) %>```
 vorformatierte
 Textzeilen
```
+
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Vorformatiertert Text" }) %>```
 vorformatierte
 Textzeilen
```
  vorformatierte
  Textzeilen
@@ -24,7 +24,7 @@
 
Hervorgehobener Programmcode (" target="_blank">mehr | Unterstützte Sprachen)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Listen
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Ungeordnete Liste" }) %>* Element 1
  * Sub
* Element 2
  • Element 1
    • Sub
  • Element 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Geordnete Liste" }) %>1. Element 1
   1. Sub
2. Element 2
  1. Element 1
    1. Sub
  2. Element 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Ungeordnete Liste" }) %>* Element 1
  * Sub
* Element 2
  • Element 1
    • Sub
  • Element 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Geordnete Liste" }) %>1. Element 1
   1. Sub
2. Element 2
  1. Element 1
    1. Sub
  2. Element 2
Überschriften (" target="_blank">mehr)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Überschrift 1" }) %># Titel 1

Titel 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Überschrift 2" }) %>## Titel 2

Titel 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Überschrift 3" }) %>### Titel 3

Titel 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Überschrift 1" }) %># Titel 1

Titel 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Überschrift 2" }) %>## Titel 2

Titel 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Überschrift 3" }) %>### Titel 3

Titel 3

Externe Links (" target="_blank">mehr)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine interne Links (" target="_blank">mehr)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link zu einer Wiki Seite" }) %>[[Wiki Seite]]Wiki Seite
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link zu einer Wiki Seite" }) %>[[Wiki Seite]]Wiki Seite
Ticket #12Ticket #12
##12Fehler #12: Titel der Aufgabe
Revision r43Revision r43
source:some/filesource:some/file
eingebettete Bilder (" target="_blank">mehr)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Bild" }) %>![](URL_zu_dem_Bild)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Bild" }) %>![](URL_zu_dem_Bild)
![](angehängtes_Bild)
Tabellen
Font Styles (" target="_blank">more)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Strong**Strong
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Italic*Italic
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Deleted~~Deleted
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 lines
 of code
```
@@ -24,7 +24,7 @@
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Lists
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Headings (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
Issue #12Issue #12
##12Bug #12: The issue subject
Revision r43Revision r43
source:some/filesource:some/file
Inline images (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
![](attached_image)
Tables
Font Styles (" target="_blank">more)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Strong**Strong
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Italic*Italic
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Deleted~~Deleted
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 lines
 of code
```
@@ -24,7 +24,7 @@
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Código resaltado" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Código resaltado" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Lists
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Headings (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
Issue #12Issue #12
##12Bug #12: The issue subject
Revision r43Revision r43
source:some/filesource:some/file
Inline images (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
![](attached_image)
Tables
Font Styles (" target="_blank">more)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Strong**Strong
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Italic*Italic
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Deleted~~Deleted
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 lines
 of code
```
@@ -24,7 +24,7 @@
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Código resaltado" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Código resaltado" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Lists
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Headings (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
Issue #12Issue #12
##12Bug #12: The issue subject
Revision r43Revision r43
source:some/filesource:some/file
Inline images (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
![](attached_image)
Tables
Font Styles (" target="_blank">more)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Strong**Strong
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Italic*Italic
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Deleted~~Deleted
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 lines
 of code
```
@@ -24,7 +24,7 @@
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Code colorisé" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Code colorisé" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Lists
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Headings (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
Issue #12Issue #12
##12Bug #12: The issue subject
Revision r43Revision r43
source:some/filesource:some/file
Inline images (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
![](attached_image)
Tables
Font Styles (" target="_blank">more)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Strong**Strong
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Italic*Italic
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Deleted~~Deleted
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 lines
 of code
```
@@ -24,7 +24,7 @@
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Código resaltado" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Código resaltado" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Lists
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Headings (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
Issue #12Issue #12
##12Bug #12: The issue subject
Revision r43Revision r43
source:some/filesource:some/file
Inline images (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
![](attached_image)
Tables
- - - - - + + + + - - - + + - - - + + + - + @@ -52,7 +52,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/ko/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/ko/wiki_syntax_markdown.html.erb index 0d8cb9ac0..7fc03c54b 100644 --- a/app/views/help/wiki_syntax/markdown/ko/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/ko/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/nl/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/nl/wiki_syntax_markdown.html.erb index 5f65f387d..8a4821aea 100644 --- a/app/views/help/wiki_syntax/markdown/nl/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/nl/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/pt-br/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/pt-br/wiki_syntax_markdown.html.erb index 3f85e1756..cbc6f4610 100644 --- a/app/views/help/wiki_syntax/markdown/pt-br/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/pt-br/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/ta-in/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/ta-in/wiki_syntax_markdown.html.erb index 76a512fcf..aecc42e81 100644 --- a/app/views/help/wiki_syntax/markdown/ta-in/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/ta-in/wiki_syntax_markdown.html.erb @@ -13,7 +13,7 @@ - + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/uk/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/uk/wiki_syntax_markdown.html.erb index 69da04e32..f20234f96 100644 --- a/app/views/help/wiki_syntax/markdown/uk/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/uk/wiki_syntax_markdown.html.erb @@ -11,11 +11,11 @@
Font Styles (" target="_blank">詳細)
<%= image_tag("images/jstoolbar/bt_strong.png", { alt: "太字" }) %>**太字**太字
<%= image_tag("images/jstoolbar/bt_em.png", { alt: "斜体" }) %>*斜体*斜体
<%= image_tag("images/jstoolbar/bt_del.png", { alt: "取り消し線" }) %>~~取り消し線~~取り消し線
<%= image_tag("images/jstoolbar/bt_code.png", { alt: "コード" }) %>`コード`コード
<%= image_tag("images/jstoolbar/bt_pre.png", { alt: "整形済みテキスト" }) %>```
 複数行の
 コード
```
+
<%= image_tag("jstoolbar/bt_strong.png", { alt: "太字" }) %>**太字**太字
<%= image_tag("jstoolbar/bt_em.png", { alt: "斜体" }) %>*斜体*斜体
<%= image_tag("jstoolbar/bt_del.png", { alt: "取り消し線" }) %>~~取り消し線~~取り消し線
<%= image_tag("jstoolbar/bt_code.png", { alt: "コード" }) %>`コード`コード
<%= image_tag("jstoolbar/bt_pre.png", { alt: "整形済みテキスト" }) %>```
 複数行の
 コード
```
  複数行の
  コード
@@ -23,7 +23,7 @@
 
コードハイライト (" target="_blank">詳細 | 対応言語)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "コードハイライト" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "コードハイライト" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -31,20 +31,20 @@
 
リスト
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "リスト" }) %>* 項目1
  * 下位階層の項目
* 項目2
  • 項目1
    • 下位階層の項目
  • 項目2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "順序付きリスト" }) %>1. 項目1
   1. 下位階層の項目
2. 項目2
  1. 項目1
    1. 下位階層の項目
  2. 項目2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "リスト" }) %>* 項目1
  * 下位階層の項目
* 項目2
  • 項目1
    • 下位階層の項目
  • 項目2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "順序付きリスト" }) %>1. 項目1
   1. 下位階層の項目
2. 項目2
  1. 項目1
    1. 下位階層の項目
  2. 項目2
見出し (" target="_blank">詳細)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># タイトル1

タイトル1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## タイトル2

タイトル2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### タイトル3

タイトル3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># タイトル1

タイトル1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## タイトル2

タイトル2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### タイトル3

タイトル3

リンク (" target="_blank">詳細)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine内のリンク (" target="_blank">詳細)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Wikiページへのリンク" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Wikiページへのリンク" }) %>[[Wiki page]]Wiki page
チケット #12チケット #12
##12Bug #12: The issue subject
リビジョン r43リビジョン r43
source:some/filesource:some/file
画像 (" target="_blank">詳細)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](画像URL)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](画像URL)
![](添付ファイル名)
Tables
Font Styles (" target="_blank">more)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Strong**Strong
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Italic*Italic
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Deleted~~Deleted
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 lines
 of code
```
@@ -24,7 +24,7 @@
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "색상화한 코드" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "색상화한 코드" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Lists
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Headings (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
Issue #12Issue #12
##12Bug #12: The issue subject
Revision r43Revision r43
source:some/filesource:some/file
Inline images (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
![](attached_image)
Tables
Font Styles (" target="_blank">more)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Strong**Strong
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Italic*Italic
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Underline_Underline
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Deleted~~Deleted
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Inline Code`Inline Code
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 lines
 of code
```
@@ -24,7 +24,7 @@
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Gemarkeerde code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Gemarkeerde code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Lists
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Headings (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
Issue #12Issue #12
##12Bug #12: The issue subject
Revision r43Revision r43
source:some/filesource:some/file
Inline images (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
![](attached_image)
Tables
Estilos de Fonte (" target="_blank">more)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**Negrito**Negrito
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*Itálico*Itálico
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Sublinhado_Sublinhado
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_Sublinhado_Sublinhado
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~Tachado~~Tachado
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`Código Inline`Código Inline
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 linhas
 de código
```
@@ -24,7 +24,7 @@
Highlighted code (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Listas
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
Cabeçalhos (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Título 1

Título 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Título 2

Título 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Título 3

Título 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># Título 1

Título 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## Título 2

Título 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### Título 3

Título 3

Links (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Links do Redmine (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Página Wiki]]Página Wiki
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Página Wiki]]Página Wiki
Tarefa #12Tarefa #12
##12Bug #12: Título da tarefa
Revisão r43Revisão r43
source:algum/arquivosource:algum/arquivo
Imagens inline (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](url_da_imagem)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](url_da_imagem)
![](imagem_anexada)
Tabelas
எழுத்துரு பாங்குகள் (" target="_blank">மேலும்)
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Strong" }) %>**வலுவான**வலுவான
<%= image_tag("jstoolbar/bt_em.png", { alt: "Italic" }) %>*சாய்வு*சாய்வு
<%= image_tag("images/jstoolbar/bt_ins.png", { alt: "Underline" }) %>_அடிக்கோடிட்டு_அடிக்கோடிட்டு
<%= image_tag("jstoolbar/bt_ins.png", { alt: "Underline" }) %>_அடிக்கோடிட்டு_அடிக்கோடிட்டு
<%= image_tag("jstoolbar/bt_del.png", { alt: "Deleted" }) %>~~நீக்கப்பட்டது~~நீக்கப்பட்டது
<%= image_tag("jstoolbar/bt_code.png", { alt: "Inline code" }) %>`இன்லைன் குறியீடு`இன்லைன் குறியீடு
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Preformatted text" }) %>```
 கோடுகள்
 குறியீடு
```
@@ -24,7 +24,7 @@
சிறப்பம்சமாக குறியீடு (" target="_blank">மேலும் | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Highlighted code" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
பட்டியல்கள்
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* பொருள் 1
  * துணை
* பொருள் 2
  • பொருள் 1
    • துணை
  • பொருள் 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. பொருள் 1
   1. துணை
2. பொருள் 2
  1. பொருள் 1
    1. துணை
  2. பொருள் 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Unordered list" }) %>* பொருள் 1
  * துணை
* பொருள் 2
  • பொருள் 1
    • துணை
  • பொருள் 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Ordered list" }) %>1. பொருள் 1
   1. துணை
2. பொருள் 2
  1. பொருள் 1
    1. துணை
  2. பொருள் 2
தலைப்புகள்(" target="_blank">மேலும்)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># தலைப்பு 1

தலைப்பு 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## தலைப்பு 2

தலைப்பு 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### தலைப்பு 3

தலைப்பு 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Heading 1" }) %># தலைப்பு 1

தலைப்பு 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Heading 2" }) %>## தலைப்பு 2

தலைப்பு 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Heading 3" }) %>### தலைப்பு 3

தலைப்பு 3

இணைப்புகள் (" target="_blank">மேலும்)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine இணைப்புகள் (" target="_blank">மேலும்)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
<%= image_tag("jstoolbar/bt_link.png", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
சிக்கல்கள் #12சிக்கல்கள் #12
##12Bug #12: The issue subject
திருத்தம் r43திருத்தம் r43
source:some/filesource:some/file
இன்லைன் படங்கள் (" target="_blank">மேலும)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](படம்_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](படம்_url)
![](இணைக்கப்பட்ட_படம்)
அட்டவணை
- - - - - + + + + - - - + + - - - + + + - + @@ -53,7 +53,7 @@ - + diff --git a/app/views/help/wiki_syntax/markdown/zh-tw/wiki_syntax_markdown.html.erb b/app/views/help/wiki_syntax/markdown/zh-tw/wiki_syntax_markdown.html.erb index fd06eddcd..7f1fcd00e 100644 --- a/app/views/help/wiki_syntax/markdown/zh-tw/wiki_syntax_markdown.html.erb +++ b/app/views/help/wiki_syntax/markdown/zh-tw/wiki_syntax_markdown.html.erb @@ -11,11 +11,11 @@
Cтилі шрифтів (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_strong.png", { alt: "Жирний" }) %>**Жирний**Жирний
<%= image_tag("images/jstoolbar/bt_em.png", { alt: "Курсив" }) %>*Курсив*Курсив
<%= image_tag("images/jstoolbar/bt_del.png", { alt: "Закреслений" }) %>~~Закреслений~~Закреслений
<%= image_tag("images/jstoolbar/bt_code.png", { alt: "Інлайн код" }) %>`Інлайн код`Інлайн код
<%= image_tag("images/jstoolbar/bt_pre.png", { alt: "Попередньо відформатований текст" }) %>```
 Попередньо
 відформатований
 текст
```
+
<%= image_tag("jstoolbar/bt_strong.png", { alt: "Жирний" }) %>**Жирний**Жирний
<%= image_tag("jstoolbar/bt_em.png", { alt: "Курсив" }) %>*Курсив*Курсив
<%= image_tag("jstoolbar/bt_del.png", { alt: "Закреслений" }) %>~~Закреслений~~Закреслений
<%= image_tag("jstoolbar/bt_code.png", { alt: "Інлайн код" }) %>`Інлайн код`Інлайн код
<%= image_tag("jstoolbar/bt_pre.png", { alt: "Попередньо відформатований текст" }) %>```
 Попередньо
 відформатований
 текст
```
  Попередньо
  відформатований
@@ -24,7 +24,7 @@
 
иділений код (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "Виділений код" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "Виділений код" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -32,20 +32,20 @@
 
Списки
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "Ненумерованний список" }) %>* Пункт
  * Підпункт
* Пункт
  • Пункт
    • Підпункт
  • Пункт
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "Нумерований список" }) %>1. Пункт
   1. Підпункт
2. Пункт
  1. Пункт
    1. Підпункт
  2. Пункт
<%= image_tag("jstoolbar/bt_ul.png", { alt: "Ненумерованний список" }) %>* Пункт
  * Підпункт
* Пункт
  • Пункт
    • Підпункт
  • Пункт
<%= image_tag("jstoolbar/bt_ol.png", { alt: "Нумерований список" }) %>1. Пункт
   1. Підпункт
2. Пункт
  1. Пункт
    1. Підпункт
  2. Пункт
Заголовоки (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "Заголовок 1" }) %># Заголовок 1

Заголовок 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "Заголовок 2" }) %>## Заголовок 2

Заголовок 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "Заголовок 3" }) %>### Заголовок 3

Заголовок 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "Заголовок 1" }) %># Заголовок 1

Заголовок 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "Заголовок 2" }) %>## Заголовок 2

Заголовок 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "Заголовок 3" }) %>### Заголовок 3

Заголовок 3

Лінки(посилання) (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine посилання (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "Посилання на вікі сторінку" }) %>[[Вікі сторінка]]Вікі сторінка
<%= image_tag("jstoolbar/bt_link.png", { alt: "Посилання на вікі сторінку" }) %>[[Вікі сторінка]]Вікі сторінка
Завдання #12Завдання #12
##12Bug #12: The issue subject
Revision r43Revision r43
source:some/filesource:some/file
Вбудовані(inline) зображення (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "Image" }) %>![](image_url)
![](attached_image)
Таблиці
- - - - - + + + + - - - + + - - - + + + - + @@ -52,7 +52,7 @@ - + -- 2.44.0
字型樣式 (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_strong.png", { alt: "強調粗體" }) %>**強調粗體**強調粗體
<%= image_tag("images/jstoolbar/bt_em.png", { alt: "斜體" }) %>*斜體*斜體
<%= image_tag("images/jstoolbar/bt_del.png", { alt: "刪除線" }) %>~~刪除線~~刪除線
<%= image_tag("images/jstoolbar/bt_code.png", { alt: "內嵌程式碼" }) %>`內嵌程式碼`內嵌程式碼
<%= image_tag("images/jstoolbar/bt_pre.png", { alt: "預先格式化的段落文字" }) %>```
 格式化
 的段落文字
```
+
<%= image_tag("jstoolbar/bt_strong.png", { alt: "強調粗體" }) %>**強調粗體**強調粗體
<%= image_tag("jstoolbar/bt_em.png", { alt: "斜體" }) %>*斜體*斜體
<%= image_tag("jstoolbar/bt_del.png", { alt: "刪除線" }) %>~~刪除線~~刪除線
<%= image_tag("jstoolbar/bt_code.png", { alt: "內嵌程式碼" }) %>`內嵌程式碼`內嵌程式碼
<%= image_tag("jstoolbar/bt_pre.png", { alt: "預先格式化的段落文字" }) %>```
 格式化
 的段落文字
```
  格式化
  的段落文字
@@ -23,7 +23,7 @@
 
反白程式碼 (" target="_blank">more | supported languages)
<%= image_tag("images/jstoolbar/bt_precode.png", { alt: "反白程式碼" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
+
<%= image_tag("jstoolbar/bt_precode.png", { alt: "反白程式碼" }) %>``` ruby
3.times do
  puts 'Hello'
end
```
3.times do
   puts 'Hello'
 end
@@ -31,20 +31,20 @@
 
清單
<%= image_tag("images/jstoolbar/bt_ul.png", { alt: "不排序清單" }) %>* 清單項目 1
  * 子清單項目
* 清單項目 2
  • 清單項目 1
    • 子清單項目
  • 清單項目 2
<%= image_tag("images/jstoolbar/bt_ol.png", { alt: "排序清單" }) %>1. 清單項目 1
   1. 子清單項目
2. 清單項目 2
  1. 清單項目 1
    1. 子清單項目
  2. 清單項目 2
<%= image_tag("jstoolbar/bt_ul.png", { alt: "不排序清單" }) %>* 清單項目 1
  * 子清單項目
* 清單項目 2
  • 清單項目 1
    • 子清單項目
  • 清單項目 2
<%= image_tag("jstoolbar/bt_ol.png", { alt: "排序清單" }) %>1. 清單項目 1
   1. 子清單項目
2. 清單項目 2
  1. 清單項目 1
    1. 子清單項目
  2. 清單項目 2
標題 (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_h1.png", { alt: "標題 1" }) %># 標題 1

標題 1

<%= image_tag("images/jstoolbar/bt_h2.png", { alt: "標題 2" }) %>## 標題 2

標題 2

<%= image_tag("images/jstoolbar/bt_h3.png", { alt: "標題 3" }) %>### 標題 3

標題 3

<%= image_tag("jstoolbar/bt_h1.png", { alt: "標題 1" }) %># 標題 1

標題 1

<%= image_tag("jstoolbar/bt_h2.png", { alt: "標題 2" }) %>## 標題 2

標題 2

<%= image_tag("jstoolbar/bt_h3.png", { alt: "標題 3" }) %>### 標題 3

標題 3

連結 (" target="_blank">more)
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine 連結 (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_link.png", { alt: "連結至一個 Wiki 頁面" }) %>[[Wiki 頁面]]Wiki 頁面
<%= image_tag("jstoolbar/bt_link.png", { alt: "連結至一個 Wiki 頁面" }) %>[[Wiki 頁面]]Wiki 頁面
議題 #12議題 #12
##12Bug #12: The issue subject
版次 r43版次 r43
source:some/filesource:some/file
內嵌圖像 (" target="_blank">more)
<%= image_tag("images/jstoolbar/bt_img.png", { alt: "圖像" }) %>![](圖像_url)
<%= image_tag("jstoolbar/bt_img.png", { alt: "圖像" }) %>![](圖像_url)
![](附加_圖像)
表格