X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/11806a676fb88f51ece004b7c05bde38f1e77706..dd676f2257f442d427e0bce4c2984fb5e3488f62:/lib/rich_text.rb diff --git a/lib/rich_text.rb b/lib/rich_text.rb index 2b3e07d6a..a0c4d9c8d 100644 --- a/lib/rich_text.rb +++ b/lib/rich_text.rb @@ -37,16 +37,16 @@ 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| doc.content.include?(phrase) end - [link_proportion - 0.2, 0.0].max * 200 + - link_count * 40 + - spammy_phrases * 40 + ([link_proportion - 0.2, 0.0].max * 200) + + (link_count * 40) + + (spammy_phrases * 40) end protected @@ -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 noopener noreferer")).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 noopener noreferer")) + Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")) end end end