]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/sanitize.rb
put osmosis installation back
[rails.git] / config / initializers / sanitize.rb
index c7be1380f216fbf76b93d172ec2c64df513d18db..6f2e30852029f17d0deafa615b4068daf540d9c3 100644 (file)
@@ -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" } }
-Sanitize::Config::OSM[:remove_contents] = %w(script style)
+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