From 67cacb5ef8e198ad3f361399df69aa38971d0c26 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Tue, 28 Jul 2020 10:53:55 -0500 Subject: [Formatting] Add support for details/summary, centering; use Monsterfork v1 styling --- app/lib/sanitize_config.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/lib/sanitize_config.rb') diff --git a/app/lib/sanitize_config.rb b/app/lib/sanitize_config.rb index 05131b674..74a1d93fb 100644 --- a/app/lib/sanitize_config.rb +++ b/app/lib/sanitize_config.rb @@ -30,6 +30,7 @@ class Sanitize next true if e =~ /^(h|p|u|dt|e)-/ # microformats classes next true if e =~ /^(mention|hashtag)$/ # semantic classes next true if e =~ /^(ellipsis|invisible)$/ # link formatting classes + next true if %w(center centered).include?(e) end node['class'] = class_list.join(' ') @@ -64,7 +65,7 @@ class Sanitize end MASTODON_STRICT ||= freeze_config( - elements: %w(p br span a abbr del pre blockquote code b strong u sub sup i em h1 h2 h3 h4 h5 ul ol li img), + elements: %w(p br span a abbr del pre blockquote code b strong u sub sup i em h1 h2 h3 h4 h5 ul ol li img h6 s center details summary), attributes: { 'a' => %w(href rel class title), -- cgit