1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-25 06:55:12 +00:00
mastodon/app/helpers/admin/trends/statuses_helper.rb
2023-02-19 07:09:40 +09:00

15 lines
370 B
Ruby

# frozen_string_literal: true
module Admin::Trends::StatusesHelper
def one_line_preview(status)
text = if status.local?
status.text.split("\n").first
else
Nokogiri::HTML(status.text).css('html > body > *').first&.text
end
return '' if text.blank?
prerender_custom_emojis(h(text), status.emojis)
end
end