Commit 8b7fb721 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Stricter textile links parsing (#2417).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2212 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 421539e3
......@@ -791,7 +791,10 @@ class RedCloth3 < String
\s?
(?:\(([^)]+?)\)(?="))? # $title
":
([\w\/]\S+?) # $url
( # $url
(\/|https?:\/\/|s?ftps?:\/\/|www\.)
[\w\/]\S+?
)
(\/)? # $slash
([^\w\=\/;\(\)]*?) # $post
(?=<|\s|$)
......@@ -799,7 +802,7 @@ class RedCloth3 < String
#"
def inline_textile_link( text )
text.gsub!( LINK_RE ) do |m|
pre,atts,text,title,url,slash,post = $~[1..7]
pre,atts,text,title,url,proto,slash,post = $~[1..8]
url, url_title = check_refs( url )
title ||= url_title
......
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