X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/cb87f02642d0097ebc067ca1f9371dde274a41e3..d7eac9b5a8f4cbbeb4ed3d73464993bfd5888935:/config/initializers/sanitize.rb?ds=sidebyside diff --git a/config/initializers/sanitize.rb b/config/initializers/sanitize.rb index 240f1e315..b98523805 100644 --- a/config/initializers/sanitize.rb +++ b/config/initializers/sanitize.rb @@ -1,5 +1,10 @@ -Sanitize::Config::OSM = Sanitize::Config::RELAXED.dup - -Sanitize::Config::OSM[:elements] -= %w[div style] -Sanitize::Config::OSM[:add_attributes] = { "a" => { "rel" => "nofollow" } } -Sanitize::Config::OSM[:remove_contents] = %w[script style] +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].remove_class + env[:node].add_class("table table-sm w-auto") if env[:node_name] == "table" + end +)