diff options
author | Go MAEDA <maeda@farend.jp> | 2018-04-11 21:58:59 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2018-04-11 21:58:59 +0000 |
commit | 3e97bc6d94a3773949abb35965d60a51505cf65e (patch) | |
tree | eb322675a470764a54c050259ad9101d50281a17 /public/help/ja | |
parent | 8b0bfbbc8b05c12e29199feb99ff6042a3461b67 (diff) | |
download | redmine-3e97bc6d94a3773949abb35965d60a51505cf65e.tar.gz redmine-3e97bc6d94a3773949abb35965d60a51505cf65e.zip |
Change the value of "pre" button in Markdown toolbar from "~~~" to "```" (#22843).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@17295 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/help/ja')
-rw-r--r-- | public/help/ja/wiki_syntax_detailed_markdown.html | 4 | ||||
-rw-r--r-- | public/help/ja/wiki_syntax_markdown.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/public/help/ja/wiki_syntax_detailed_markdown.html b/public/help/ja/wiki_syntax_detailed_markdown.html index 1078ab373..4108ea79d 100644 --- a/public/help/ja/wiki_syntax_detailed_markdown.html +++ b/public/help/ja/wiki_syntax_detailed_markdown.html @@ -286,9 +286,9 @@ To go live, all you need to add is a database and a web server. <p>Wiki記法に対応している箇所であればどこでも以下の記述によりコードハイライトが利用できます (言語名・別名では大文字・小文字は区別されません):</p> <pre> -~~~ ruby +``` ruby Place your code here. -~~~ +``` </pre> <p>表示例:</p> diff --git a/public/help/ja/wiki_syntax_markdown.html b/public/help/ja/wiki_syntax_markdown.html index e5f6b86ee..37626eb77 100644 --- a/public/help/ja/wiki_syntax_markdown.html +++ b/public/help/ja/wiki_syntax_markdown.html @@ -15,7 +15,7 @@ <tr><th><img src="../../images/jstoolbar/bt_em.png" style="border: 1px solid #bbb;" alt="斜体" /></th><td>*斜体*</td><td><em>斜体</em></td></tr> <tr><th><img src="../../images/jstoolbar/bt_del.png" style="border: 1px solid #bbb;" alt="取り消し線" /></th><td>~~取り消し線~~</td><td><del>取り消し線</del></td></tr> <tr><th><img src="../../images/jstoolbar/bt_code.png" style="border: 1px solid #bbb;" alt="コード" /></th><td>`コード`</td><td><code>コード</code></td></tr> -<tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="整形済みテキスト" /></th><td>~~~<br /> 複数行の<br /> コード<br />~~~</td><td> +<tr><th><img src="../../images/jstoolbar/bt_pre.png" style="border: 1px solid #bbb;" alt="整形済みテキスト" /></th><td>```<br /> 複数行の<br /> コード<br />```</td><td> <pre> 複数行の コード |