Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-08-21 04:25:16 +0300
committerRobert Speicher <rspeicher@gmail.com>2015-08-21 04:25:16 +0300
commit747fe7520b244a324b60049cbe22c22a5df29c82 (patch)
tree5432641ed04d21bb7ca8c3597c2ff00bb68874be /lib
parent2de0935e276e45ac0090d32fd345593c2db92a5b (diff)
Remove trailing HTML entities from non-Rinku autolinks as well.
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/markdown/autolink_filter.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/gitlab/markdown/autolink_filter.rb b/lib/gitlab/markdown/autolink_filter.rb
index 4e14a048cfb..541f1d88ffc 100644
--- a/lib/gitlab/markdown/autolink_filter.rb
+++ b/lib/gitlab/markdown/autolink_filter.rb
@@ -87,8 +87,14 @@ module Gitlab
def autolink_filter(text)
text.gsub(LINK_PATTERN) do |match|
+ # Remove any trailing HTML entities and store them for appending
+ # outside the link element. The entity must be marked HTML safe in
+ # order to be output literally rather than escaped.
+ match.gsub!(/((?:&[\w#]+;)+)\z/, '')
+ dropped = ($1 || '').html_safe
+
options = link_options.merge(href: match)
- content_tag(:a, match, options)
+ content_tag(:a, match, options) + dropped
end
end