X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d2e11a327eb686bd2d1293ac146a2bb9730ba19b..c6144501cd8e105656b74777060db052951ce0ec:/config/initializers/sanitize.rb diff --git a/config/initializers/sanitize.rb b/config/initializers/sanitize.rb index c7b7b3326..6f2e30852 100644 --- a/config/initializers/sanitize.rb +++ b/config/initializers/sanitize.rb @@ -1,5 +1,8 @@ Sanitize::Config::OSM = Sanitize::Config::RELAXED.dup Sanitize::Config::OSM[:elements] -= %w[div style] -Sanitize::Config::OSM[:add_attributes] = { "a" => { "rel" => "nofollow noopener noreferer" } } +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