]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/sanitize.rb
Standardise on double quoted strings
[rails.git] / config / initializers / sanitize.rb
index 0df38f0fa87339702ec4ad6425068fcf3998fa1d..c7be1380f216fbf76b93d172ec2c64df513d18db 100644 (file)
@@ -1,4 +1,5 @@
 Sanitize::Config::OSM = Sanitize::Config::RELAXED.dup
 
-Sanitize::Config::OSM[:add_attributes] = { 'a' => { 'rel' => 'nofollow' } }
-Sanitize::Config::OSM[:remove_contents] = [ 'script', 'style' ]
+Sanitize::Config::OSM[:elements] -= %w(div style)
+Sanitize::Config::OSM[:add_attributes] = { "a" => { "rel" => "nofollow" } }
+Sanitize::Config::OSM[:remove_contents] = %w(script style)