3 "Business Description:", "Additional Keywords:"
6 def self.new(format, text)
8 when "html" then HTML.new(text || "")
9 when "markdown" then Markdown.new(text || "")
10 when "text" then Text.new(text || "")
15 include ActionView::Helpers::TextHelper
16 include ActionView::Helpers::OutputSafetyHelper
18 def sanitize(text, _options = {})
19 Sanitize.clean(text, Sanitize::Config::OSM).html_safe
24 include ActionView::Helpers::TagHelper
30 doc = Nokogiri::HTML(to_html)
35 doc.xpath("//a").each do |link|
37 link_size += link.content.length
40 link_proportion = link_size.to_f / doc.content.length
43 spammy_phrases = SPAMMY_PHRASES.count do |phrase|
44 doc.content.include?(phrase)
47 ([link_proportion - 0.2, 0.0].max * 200) +
62 def simple_format(text)
63 SimpleFormat.new.simple_format(text)
67 Sanitize.clean(text, Sanitize::Config::OSM).html_safe
70 def linkify(text, mode = :urls)
72 Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer")).html_safe
74 Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferrer"))
81 linkify(sanitize(simple_format(self)))
91 linkify(sanitize(document.to_html), :all)
99 @image_element = first_image_element(document.root) unless defined? @image_element
100 @image_element.attr["src"] if @image_element
104 @image_element = first_image_element(document.root) unless defined? @image_element
105 @image_element.attr["alt"] if @image_element
111 @document ||= Kramdown::Document.new(self)
114 def first_image_element(element)
115 return element if image?(element) && element.attr["src"].present?
117 element.children.find do |child|
118 nested_image = first_image_element(child)
119 break nested_image if nested_image
124 element.type == :img || (element.type == :html_element && element.value == "img")
130 linkify(simple_format(ERB::Util.html_escape(self)))