Fixed: Double-dash results in strikethrough text (#5122).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3605 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
6e6e260cea
commit
533590c29c
|
@ -381,9 +381,11 @@ class RedCloth3 < String
|
|||
case rtype
|
||||
when :limit
|
||||
/(^|[>\s\(]) # sta
|
||||
(?!\-\-)
|
||||
(#{QTAGS_JOIN}|) # oqs
|
||||
(#{rcq}) # qtag
|
||||
(\w|[^\s].*?[^\s]) # content
|
||||
(?!\-\-)
|
||||
#{rcq}
|
||||
(#{QTAGS_JOIN}|) # oqa
|
||||
(?=[[:punct:]]|\s|\)|$)/x
|
||||
|
|
|
@ -71,6 +71,13 @@ class Redmine::WikiFormatting::TextileFormatterTest < HelperTestCase
|
|||
)
|
||||
end
|
||||
|
||||
def test_double_dashes_should_not_strikethrough
|
||||
assert_html_output(
|
||||
'double -- dashes -- test' => 'double -- dashes -- test',
|
||||
'double -- *dashes* -- test' => 'double -- <strong>dashes</strong> -- test'
|
||||
)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def assert_html_output(to_test)
|
||||
|
|
Loading…
Reference in New Issue