Fix sanitizer parsing link text as HTML when stripping unsupported links (#22558)

This commit is contained in:
Claire
2023-01-11 22:21:10 +01:00
committed by GitHub
parent 0c689b9d01
commit 15b88a83ab
2 changed files with 5 additions and 1 deletions

View File

@ -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|