Rework configuration to use Sanitize::Config.merge
This is the recommended approach, and works better when dealing with deeper attributes
This commit is contained in:
parent
5d39bf8491
commit
f442bb9e80
1 changed files with 9 additions and 8 deletions
|
@ -1,8 +1,9 @@
|
|||
Sanitize::Config::OSM = Sanitize::Config::RELAXED.dup
|
||||
|
||||
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
|
||||
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].add_class("table table-sm w-auto") if env[:node_name] == "table"
|
||||
end
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue