]> git.openstreetmap.org Git - rails.git/commitdiff
Rework configuration to use Sanitize::Config.merge
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 24 Mar 2021 18:19:14 +0000 (18:19 +0000)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 24 Mar 2021 18:19:14 +0000 (18:19 +0000)
This is the recommended approach, and works better when dealing with deeper attributes

config/initializers/sanitize.rb

index 6f2e30852029f17d0deafa615b4068daf540d9c3..609bb8734c8c51006420281ee1dc474f3b7b543a 100644 (file)
@@ -1,8 +1,9 @@
-Sanitize::Config::OSM = Sanitize::Config::RELAXED.dup
-
-Sanitize::Config::OSM[:elements] -= %w[div style]
-Sanitize::Config::OSM[:add_attributes] = { "a" => { "rel" => "nofollow noopener noreferrer" } }
-Sanitize::Config::OSM[:remove_contents] = %w[script style]
-Sanitize::Config::OSM[:transformers] = lambda do |env|
-  env[:node].add_class("table table-sm w-auto") if env[:node_name] == "table"
-end
+Sanitize::Config::OSM = Sanitize::Config.merge(
+  Sanitize::Config::RELAXED,
+  :elements => Sanitize::Config::RELAXED[:elements] - %w[div style],
+  :add_attributes => { "a" => { "rel" => "nofollow noopener noreferrer" } },
+  :remove_contents => %w[script style],
+  :transformers => lambda do |env|
+    env[:node].add_class("table table-sm w-auto") if env[:node_name] == "table"
+  end
+)