X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/94f19ce3b32d70c499893f8ffb9592a9f0a54f7a..8ecc1a4fce1b7ae97017de42c8377bf054e830e8:/config/initializers/sanitize.rb?ds=sidebyside diff --git a/config/initializers/sanitize.rb b/config/initializers/sanitize.rb index 7360e2701..6f2e30852 100644 --- a/config/initializers/sanitize.rb +++ b/config/initializers/sanitize.rb @@ -1,3 +1,8 @@ Sanitize::Config::OSM = Sanitize::Config::RELAXED.dup -Sanitize::Config::OSM[:add_attributes] = { 'a' => { 'rel' => 'nofollow' } } +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