X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1f3372f52c0aab437926f2904efb00bbb0d63a96..11e81c5398bb43d35c1b12421f7a6be2ca5b7047:/lib/rich_text.rb diff --git a/lib/rich_text.rb b/lib/rich_text.rb index 5b0faae2b..8950c6888 100644 --- a/lib/rich_text.rb +++ b/lib/rich_text.rb @@ -37,7 +37,7 @@ module RichText link_size += link.content.length end - link_proportion = link_size.to_f / doc.content.length.to_f + link_proportion = link_size.to_f / doc.content.length end spammy_phrases = SPAMMY_PHRASES.count do |phrase| @@ -61,9 +61,9 @@ module RichText def linkify(text, mode = :urls) if text.html_safe? - Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow")).html_safe + Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")).html_safe else - Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow")) + Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")) end end end