Fix sanitizer parsing link text as HTML when stripping unsupported links (#22558)
This commit is contained in:
parent
0c689b9d01
commit
15b88a83ab
2 changed files with 5 additions and 1 deletions
|
@ -49,7 +49,7 @@ class Sanitize
|
|||
end
|
||||
end
|
||||
|
||||
current_node.replace(current_node.text) unless LINK_PROTOCOLS.include?(scheme)
|
||||
current_node.replace(Nokogiri::XML::Text.new(current_node.text, current_node.document)) unless LINK_PROTOCOLS.include?(scheme)
|
||||
end
|
||||
|
||||
UNSUPPORTED_ELEMENTS_TRANSFORMER = lambda do |env|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue