Fixes a regexp for ruby1.9.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3015 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
be41f7f473
commit
668ec7f694
|
@ -577,7 +577,7 @@ class RedCloth3 < String
|
|||
end
|
||||
end
|
||||
|
||||
QUOTES_RE = /(^>+([^\n]*?)\n?)+/m
|
||||
QUOTES_RE = /(^>+([^\n]*?)(\n|$))+/m
|
||||
QUOTES_CONTENT_RE = /^([> ]+)(.*)$/m
|
||||
|
||||
def block_textile_quotes( text )
|
||||
|
|
Loading…
Reference in New Issue