mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 15:33:44 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
39 lines
999 B
Ruby
39 lines
999 B
Ruby
# frozen_string_literal: true
|
|
|
|
# name: discourse-details
|
|
# about: HTML5.1 Details polyfill for Discourse
|
|
# version: 0.4
|
|
# authors: Régis Hanol
|
|
# url: https://github.com/discourse/discourse/tree/master/plugins/discourse-details
|
|
|
|
enabled_site_setting :details_enabled
|
|
hide_plugin if self.respond_to?(:hide_plugin)
|
|
|
|
register_asset "javascripts/details.js"
|
|
register_asset "stylesheets/details.scss"
|
|
|
|
after_initialize do
|
|
|
|
Email::Styles.register_plugin_style do |fragment|
|
|
# remove all elided content
|
|
fragment.css("details.elided").each(&:remove)
|
|
|
|
# replace all details with their summary in emails
|
|
fragment.css("details").each do |details|
|
|
summary = details.css("summary")
|
|
if summary && summary[0]
|
|
summary = summary[0]
|
|
if summary && summary.respond_to?(:name)
|
|
summary.name = "p"
|
|
details.replace(summary)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
on(:reduce_cooked) do |fragment|
|
|
fragment.css("details.elided").each(&:remove)
|
|
end
|
|
|
|
end
|