pleroma/priv/scrubbers/o_embed.ex
2021-05-04 18:29:25 -05:00

18 lines
344 B
Elixir

defmodule Pleroma.HTML.Scrubber.OEmbed do
@moduledoc """
Scrubs OEmbed HTML
"""
require FastSanitize.Sanitizer.Meta
alias FastSanitize.Sanitizer.Meta
Meta.strip_comments()
Meta.allow_tag_with_these_attributes(:iframe, [
"width",
"height",
"src",
"allowfullscreen"
])
Meta.strip_everything_not_covered()
end