Skip to content

Commit

Permalink
chore: костанта с минимальным размером строки содержащей ссылки
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryBochkarev committed Oct 14, 2015
1 parent e48da9f commit 24bd113
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/string_tools/html.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

module StringTools
module HTML
# минимальная длина строки, в которой могут быть ссылки
TEXT_WITH_LINKS_MINIMUM_LENGTH = '<a href="'.length

# Public: Удаляет ссылки на неразрешенные домены
#
# html - String содержимое потенциально ненужных ссылок
Expand All @@ -29,6 +32,8 @@ module HTML
#
# Returns String without links to external resources
def self.remove_links(html, options = {})
return html if html.length < TEXT_WITH_LINKS_MINIMUM_LENGTH

Loofah.fragment(html).scrub!(LinksRemoveScrubber.new(options)).to_s
end

Expand Down

0 comments on commit 24bd113

Please sign in to comment.