Class: Jets::Html::LinkSanitizer

Inherits:
Sanitizer show all
Defined in:
lib/jets/html/sanitizer.rb

Overview

Jets::Html::LinkSanitizer

Removes a tags and href attributes leaving only the link text

link_sanitizer = Jets::Html::LinkSanitizer.new link_sanitizer.sanitize(‘<a href=“example.com”>Only the link text will be kept.</a>’) # => Only the link text will be kept.

Constant Summary

Constants inherited from Sanitizer

Sanitizer::VERSION

Instance Method Summary collapse

Methods inherited from Sanitizer

full_sanitizer, link_sanitizer, white_list_sanitizer

Constructor Details

#initializeLinkSanitizer

Returns a new instance of LinkSanitizer.



49
50
51
52
53
# File 'lib/jets/html/sanitizer.rb', line 49

def initialize
  @link_scrubber = TargetScrubber.new
  @link_scrubber.tags = %w(a href)
  @link_scrubber.attributes = %w(href)
end

Instance Method Details

#sanitize(html, options = {}) ⇒ Object



55
56
57
# File 'lib/jets/html/sanitizer.rb', line 55

def sanitize(html, options = {})
  Loofah.scrub_fragment(html, @link_scrubber).to_s
end