From: Go MAEDA Date: Sat, 29 Feb 2020 14:35:50 +0000 (+0000) Subject: Merged r19536 and r19542 from trunk to 4.1-stable (#32971). X-Git-Tag: 4.1.1~37 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f7415c72c342a5bd392e4f149ea172dde5be6406;p=redmine.git Merged r19536 and r19542 from trunk to 4.1-stable (#32971). git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19545 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/lib/redmine/wiki_formatting/textile/redcloth3.rb b/lib/redmine/wiki_formatting/textile/redcloth3.rb index d33aede8d..54725d2bf 100644 --- a/lib/redmine/wiki_formatting/textile/redcloth3.rb +++ b/lib/redmine/wiki_formatting/textile/redcloth3.rb @@ -1020,11 +1020,12 @@ class RedCloth3 < String end def flush_left( text ) - indt = 0 - if text =~ /^ / - unless text.empty? - indt += 1 while text !~ /^ {#{indt}}[^ ]/ - end + if /(?![\r\n\t ])[[:cntrl:]]/.match?(text) + text.gsub!(/(?![\r\n\t ])[[:cntrl:]]/, '') + end + if /^ +\S/.match?(text) + indt = 0 + indt += 1 until /^ {#{indt}}\S/.match?(text) if indt.nonzero? text.gsub!( /^ {#{indt}}/, '' ) end diff --git a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb index 1fb0dd32e..83ece5954 100644 --- a/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb +++ b/test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb @@ -161,6 +161,24 @@ RAW EXPECTED assert_equal expected.gsub(%r{\s+}, ''), to_html(raw).gsub(%r{\s+}, '') + + raw = <<~RAW + * Item-1 + + * Item-1a + * Item-1b + RAW + expected = <<~EXPECTED + + EXPECTED + assert_equal expected.gsub(%r{\s+}, ''), to_html(raw).gsub(%r{\s+}, '') end def test_escaping