Mastodon/app/lib/plain_text_formatter.rb.orig

40 lines
838 B
Ruby

# frozen_string_literal: true
class PlainTextFormatter
NEWLINE_TAGS_RE = %r{(<br />|<br>|</p>)+}
attr_reader :text, :local
alias local? local
def initialize(text, local)
@text = text
@local = local
end
def to_s
if local?
text
else
<<<<<<< HEAD
node = Nokogiri::HTML.fragment(insert_newlines)
# Elements that are entirely removed with our Sanitize config
node.xpath('.//iframe|.//math|.//noembed|.//noframes|.//noscript|.//plaintext|.//script|.//style|.//svg|.//xmp').remove
node.text.chomp
=======
html_entities.decode(strip_tags(insert_newlines)).chomp
>>>>>>> 3f2e31800 (Unescape HTML entities (#24019))
end
end
private
def insert_newlines
text.gsub(NEWLINE_TAGS_RE) { |match| "#{match}\n" }
end
def html_entities
HTMLEntities.new
end
end