From bf4a6ccf6d602a8c77df61f5b0ee86923c598836 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Fri, 27 Sep 2019 01:30:56 +0000 Subject: Add "Highlighted code" section in Wiki Syntax Quick Reference (#32123). Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@18545 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- public/help/sl/wiki_syntax_markdown.html | 8 ++++++++ public/help/sl/wiki_syntax_textile.html | 8 ++++++++ 2 files changed, 16 insertions(+) (limited to 'public/help/sl') diff --git a/public/help/sl/wiki_syntax_markdown.html b/public/help/sl/wiki_syntax_markdown.html index 06d222b1d..2eeca0c0a 100644 --- a/public/help/sl/wiki_syntax_markdown.html +++ b/public/help/sl/wiki_syntax_markdown.html @@ -23,6 +23,14 @@ +Highlighted code +Highlighted code``` ruby
3.times do
  puts 'Hello'
end
``` +
3.times do
+  puts 'Hello'
+end
+
+ + Lists Unordered list* Item 1
  * Sub
* Item 2 Ordered list1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
diff --git a/public/help/sl/wiki_syntax_textile.html b/public/help/sl/wiki_syntax_textile.html index 4727f6d33..5410fb448 100644 --- a/public/help/sl/wiki_syntax_textile.html +++ b/public/help/sl/wiki_syntax_textile.html @@ -24,6 +24,14 @@ +Highlighted code +Highlighted code<pre><code class="ruby">
3.times do
  puts 'Hello'
end
</code></pre> +
3.times do
+  puts 'Hello'
+end
+
+ + Lists Unordered list* Item 1
** Sub
* Item 2 Ordered list# Item 1
## Sub
# Item 2
  1. Item 1
    1. Sub
  2. Item 2
-- cgit v1.2.3