mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-24 09:21:12 +00:00
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
This commit is contained in:
parent
e5371b4c67
commit
a830a23d7b
@ -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('|')
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user