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
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.to_f
43 spammy_phrases = SPAMMY_PHRASES.count do |phrase|
44 doc.content.include?(phrase)
47 [link_proportion - 0.2, 0.0].max * 200 +
54 def simple_format(text)
55 SimpleFormat.new.simple_format(text)
59 Sanitize.clean(text, Sanitize::Config::OSM).html_safe
62 def linkify(text, mode = :urls)
64 Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferer")).html_safe
66 Rinku.auto_link(text, mode, tag_builder.tag_options(:rel => "nofollow noopener noreferer"))
73 linkify(sanitize(simple_format(self)))
83 linkify(sanitize(Kramdown::Document.new(self).to_html), :all)
93 linkify(simple_format(ERB::Util.html_escape(self)))