Commit 668ec7f6 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes a regexp for ruby1.9.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3015 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent be41f7f4
......@@ -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 )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment