summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-07-03 11:45:37 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-07-03 11:45:37 +0000
commita830a23d7b26c5e2b9300d03ffed0bf9be70c8bd (patch)
treea286a92d6ed1c90f3312081bb03035e92609d450 /lib
parente5371b4c67139996a70c0e338d4b2677b2ac3b87 (diff)
downloadredmine-a830a23d7b26c5e2b9300d03ffed0bf9be70c8bd.tar.gz
redmine-a830a23d7b26c5e2b9300d03ffed0bf9be70c8bd.zip
fix source indent of lib/redmine/wiki_formatting/textile/redcloth3.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19850 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/wiki_formatting/textile/redcloth3.rb26
1 files changed, 13 insertions, 13 deletions
diff --git a/lib/redmine/wiki_formatting/textile/redcloth3.rb b/lib/redmine/wiki_formatting/textile/redcloth3.rb
index 5b534df91..92c6e29d0 100644
--- a/lib/redmine/wiki_formatting/textile/redcloth3.rb
+++ b/lib/redmine/wiki_formatting/textile/redcloth3.rb
@@ -354,22 +354,22 @@ class RedCloth3 < String
# Text markup tags, don't conflict with block tags
SIMPLE_HTML_TAGS = [
- 'tt', 'b', 'i', 'big', 'small', 'em', 'strong', 'dfn', 'code',
- 'samp', 'kbd', 'var', 'cite', 'abbr', 'acronym', 'a', 'img', 'br',
- 'br', 'map', 'q', 'sub', 'sup', 'span', 'bdo'
+ 'tt', 'b', 'i', 'big', 'small', 'em', 'strong', 'dfn', 'code',
+ 'samp', 'kbd', 'var', 'cite', 'abbr', 'acronym', 'a', 'img', 'br',
+ 'br', 'map', 'q', 'sub', 'sup', 'span', 'bdo'
]
QTAGS = [
- ['**', 'b', :limit],
- ['*', 'strong', :limit],
- ['??', 'cite', :limit],
- ['-', 'del', :limit],
- ['__', 'i', :limit],
- ['_', 'em', :limit],
- ['%', 'span', :limit],
- ['+', 'ins', :limit],
- ['^', 'sup', :limit],
- ['~', 'sub', :limit]
+ ['**', 'b', :limit],
+ ['*', 'strong', :limit],
+ ['??', 'cite', :limit],
+ ['-', 'del', :limit],
+ ['__', 'i', :limit],
+ ['_', 'em', :limit],
+ ['%', 'span', :limit],
+ ['+', 'ins', :limit],
+ ['^', 'sup', :limit],
+ ['~', 'sub', :limit]
]
QTAGS_JOIN = QTAGS.map {|rc, ht, rtype| Regexp::quote rc}.join('|')